/* ================= HERO ================= */
.clients-hero {
  width: 100%;
  height: 50vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 5%;

  background:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url("../img/hero.jpeg") center/cover no-repeat;
}

.clients-hero-content {
  max-width: 700px;
}

.clients-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin: 10px 0;
}

.clients-hero p {
  color: #444;
}


/* ================= CLIENTS SECTION ================= */
.clients-section {
  padding: 100px 5%;
}

/* INTRO */
.clients-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.clients-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.clients-intro p {
  color: #555;
}


/* ================= CLIENT TYPES ================= */
.clients-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #fff, #fff0f5);
}

/* ================= INTRO ================= */
.clients-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.clients-intro h2 {
  font-size: 2.3rem;
  margin: 10px 0;
}

.clients-intro p {
  color: #555;
  line-height: 1.6;
}


/* ================= GRID ================= */
.clients-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


/* ================= ITEM ================= */
.client-type {
  position: relative;
  padding: 25px 20px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}

/* LEFT ACCENT LINE */
.client-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;

  background: linear-gradient(
    to bottom,
    var(--primary-pink),
    var(--gloss-pink)
  );

  border-radius: 10px;
}

/* HOVER (SUBTLE) */
.client-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(233,30,99,0.08);
}


/* ================= TEXT ================= */
.client-type h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-pink);
}

.client-type p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {

  .clients-types {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .clients-types {
    grid-template-columns: 1fr;
  }

  .clients-section {
    padding: 70px 5%;
  }

}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 100px 5%;
  background: #fff0f5;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #555;
}

.testimonial-card h4 {
  font-size: 0.9rem;
  color: var(--primary-pink);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .clients-section,
  .testimonials {
    padding: 70px 5%;
  }
}