/* === SECȚIUNE CTA GENERAL === */
.cta-section {
  background: #620000;
  color: #fff;
  padding: 80px 20px;
}

.cta-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* === TEXT STÂNGA === */
.cta-text {
  flex: 1 1 600px;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #620000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #f0f0f0;
}

.cta-button .icon {
  margin-right: 8px;
  font-size: 18px;
}

/* === IMAGINE DREAPTA === */
.cta-image {
  flex: 1 1 500px;
  text-align: center;
}

.cta-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .cta-text {
    flex: unset; /* ✅ Elimină lățimea fixă pe mobil */
    width: 100%;
  }

  .cta-section {
    padding: 60px 20px 40px;
  }

  .cta-text h2 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .cta-button {
    font-size: 15px;
    padding: 10px 18px;
  }

 .cta-image {
  flex: unset;  /* ✅ elimină fixarea pe mobil */
  width: 100%;
  margin-top: 30px;
}
  .cta-image img {
    border-radius: 10px;
    max-width: 90%;
  }
}
