/* ================= HERO ================= */
.values-hero {
  min-height: 55vh; /* reduced height */
  display: flex;
  align-items: center;
  background: url("../images/banner/values.jpg")
    no-repeat right center / cover;
}

.hero-inner {
  max-width: 560px;
  margin-left: 80px;
}

.hero-pill {
  background: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  background: linear-gradient(90deg,#ff4fae,#ffb000,#4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin-top: 14px;
  color: #555;
  max-width: 460px;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-inner {
    margin: 0 24px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .values-hero {
    min-height: 48vh;
  }
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.8) 60%,
        rgba(255,255,255,0.2) 100%
      ),
      url("../../assets/images/hero-banner.jpeg") no-repeat center / cover;
  }

  .hero-inner {
    margin-left: 0;
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }
}

/* ================= OUR VALUES ================= */

.values-premium {
  position: relative;
  padding: 4rem 1.5rem;
  overflow: hidden;
  background: #fffaf5;
}

/* Soft background glow */
.values-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, #ffe4ec 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, #e8f6ff 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, #fff1c9 0%, transparent 45%);
  opacity: 0.6;
  z-index: 0;
}

.values-premium .wrapper {
  position: relative;
  z-index: 2;
}

.values-subtext {
  max-width: 600px;
  margin: 1rem auto 2.5rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ================= GRID ================= */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ================= CARD ================= */

.value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient accent strip */
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
}

/* Icon */
.value-icon {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* Title */
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

/* Text */
.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ================= COLOR VARIANTS ================= */

.value-card.pink::before {
  background: linear-gradient(90deg, #ff9a9e, #fecfef);
}

.value-card.yellow::before {
  background: linear-gradient(90deg, #f6d365, #fda085);
}

.value-card.blue::before {
  background: linear-gradient(90deg, #84fab0, #8fd3f4);
}

.value-card.green::before {
  background: linear-gradient(90deg, #a8edea, #fed6e3);
}

.value-card.purple::before {
  background: linear-gradient(90deg, #cfd9df, #e2ebf0);
}

/* ================= HOVER ANIMATION ================= */

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Subtle icon bounce */
.value-card:hover .value-icon {
  animation: iconFloat 0.6s ease-in-out;
}

@keyframes iconFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ================= TABLET ================= */

@media (min-width: 600px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-premium {
    padding: 5rem 2rem;
  }
}

/* ================= DESKTOP ================= */

@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-card {
    padding: 2.2rem;
  }

  .value-icon {
    font-size: 2.5rem;
  }
}
/* ================= ABOUT CLOSING ================= */

.about-closing {
  position: relative;
  padding: 4.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  background: #fffaf7;
}

/* Soft gradient glow */
.about-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, #ffe4ec 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, #e8f6ff 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, #fff1c9 0%, transparent 50%);
  opacity: 0.65;
  z-index: 0;
}

.about-closing .wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Title */
.about-closing .about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Gradient emphasis */
.about-closing .about-title span {
  background: linear-gradient(90deg, #ff4fae, #ffb000, #4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub text */
.closing-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}



/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .about-closing {
    padding: 3.5rem 1.25rem;
  }

  .about-closing .about-title {
    font-size: 1.8rem;
  }

  .closing-text {
    font-size: 0.95rem;
  }

}
