/* =============== RESETE + BAZĂ =============== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #1E293B;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============== NAVBAR =============== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 10%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-svg {
  height: 40px;
}

.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1E293B;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #6D28D9;
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(120deg, #6D28D9 20%, #06B6D4 90%);
  color: #fff;
  padding: 5rem 10%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* =============== BUTTONS =============== */
.btn-primary {
  background: linear-gradient(90deg, #06B6D4, #6D28D9);
  padding: 0.9rem 2rem;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* =============== GENERALE SECTIUNI =============== */
section {
  padding: 4rem 10%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #6D28D9;
}

/* =============== TESTIMONIAL / TRUST =============== */
.trust {
  background: #F9FAFB;
  text-align: center;
  padding: 5rem 10%;
}

.trust h2 {
  color: #6D28D9;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trust-intro {
  color: #475569;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.testimonial {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 350px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #06B6D4;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  color: #334155;
  margin-bottom: 1rem;
}

.testimonial h4 {
  margin: 0;
  color: #6D28D9;
  font-weight: 600;
}

.testimonial span {
  color: #64748B;
  font-size: 0.9rem;
}

/* =============== ABOUT SECTION =============== */
.about {
  background: #fff;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  color: #475569;
  line-height: 1.7;
}

/* =============== AVANTAJE =============== */
.advantages {
  background: #F9FAFB;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card h3 {
  color: #6D28D9;
  margin-bottom: 1rem;
}

/* =============== STEPS =============== */
.steps {
  background: #fff;
}

.steps-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step {
  text-align: center;
  max-width: 250px;
}

.step span {
  display: inline-block;
  font-size: 2rem;
  background: #6D28D9;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* =============== FOOTER =============== */
footer {
  background: #0F172A;
  color: #CBD5E1;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #06B6D4;
  margin: 0 0.8rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =============== WHATSAPP BUTTON =============== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  margin-top: 15px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar nav {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 0.8rem 1.5rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}
