  :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: var(--verde);
  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);
}
  section.servicii {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gri-închis);
    position: relative;
  }
  h2.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--verde);
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }

  .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgb(107 192 72 / 0.15);
    margin-bottom: 2rem;
    padding: 1.8rem 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
  }
  .card:hover {
    box-shadow: 0 12px 25px rgb(0 161 217 / 0.3);
    transform: translateY(-6px);
  }
  .card h3 {
    color: var(--verde);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }
  .card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gri-închis);
    max-height: 4.8em; /* 3 lines approx */
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .card.expanded p {
    max-height: 100vh;
    margin-top: 1rem;
  }

  /* Icon for toggle */
  .card::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 24px;
    font-size: 1.3rem;
    color: var(--verde);
    transition: transform 0.3s ease;
  }
  .card.expanded::after {
    transform: rotate(180deg);
  }

  /* Responsive */
  @media (max-width: 600px) {
    h2.section-title {
      font-size: 2rem;
    }
    .card {
      padding: 1.5rem 1.5rem;
    }
    .card h3 {
      font-size: 1.3rem;
    }
  }

  .cooling-tips {
  background-color: #f3f6f9;
  padding: 10px 20px;
}

.tips-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.tips-image {
  flex: 1 1 200px;
}

.tips-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tips-content {
  flex: 1 1 250px;
}

.tips-content h3 {
  color: var(--verde);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a1a1a;
  line-height: 1.3;
}

.tip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.tip-icon {
  flex-shrink: 0;
  background-color: var(--albastru);
  border-radius: 50%;
  padding: 14px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.tip-icon svg {
  width: 32px;
  height: 32px;
}

.tip-text strong {
  color: var(--verde);
  font-size: 18px;
  color: #1a1a1a;
  display: block;
  margin-bottom: 6px;
}

.tip-text p {
  font-size: 16px;
  color: var(--detaliu);
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .tips-container {
    flex-direction: column;
  }

  .tips-content h3 {
    color: var(--verde);
    font-size: 26px;
    text-align: center;
  }

  .tip {
    gap: 15px;
  }

  .tip-icon {
    width: 54px;
    height: 54px;
    padding: 10px;
  }

  .tip-icon svg {
    width: 24px;
    height: 24px;
  }

  .tip-text strong {
    color: var(--verde);
    font-size: 16px;
  }

  .tip-text p {
    font-size: 15px;
  }
}