/* ================= SERVICES HERO (FULL WIDTH CLEAN) ================= */
.services-hero {
  width: 100%;
  height: 45vh; /* reduced height */

  display: flex;
  align-items: center;
  justify-content: center;

  /* FULL WIDTH IMAGE */
  background: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url("../img/hero.jpeg") center/cover no-repeat;
}

/* CONTENT */
.services-hero-overlay {
  text-align: center;
  padding: 0 20px;
}

/* TITLE */
.services-hero h1 {
  font-size: 2.3rem;
  color: var(--primary-pink);
}







/* ================= SERVICES INTRO ================= */
.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-intro h2 {
  font-size: 2.2rem;
  margin: 10px 0;
}

.services-intro p {
  color: #555;
  line-height: 1.6;
}

/* reuse tag style */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 5%;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

/* GRID */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  position: relative;
  height: 350px;

  border-radius: 16px;
  overflow: hidden;

  background-size: cover;
  background-position: center;

  cursor: pointer;
}

/* OVERLAY (SUBTLE, NOT HEAVY) */
.service-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 25px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1)
  );

  color: #fff;
  transition: 0.3s ease;
}

/* TEXT */
.service-overlay h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.service-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
}


/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  padding: 100px 5%;
  background: #fff0f5;
}

.why-choose-container {
  max-width: 1100px;
  margin: auto;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

/* ICON */
.why-card i {
  font-size: 1.4rem;
  color: var(--primary-pink);
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 0.9rem;
  color: #555;
}


/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .services-hero {
    height: 50vh;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .services-section,
  .why-choose-section {
    padding: 70px 5%;
  }
}