/* =========================
   SERVICES PAGE WRAPPER
========================= */
.services-page {
  padding: 110px 8% 90px;
  background: #ffffff;
}

/* PAGE HEAD */
.services-head {
  text-align: center;
  margin-bottom: 70px;
}

.services-head h1 {
  font-size: 3.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.services-head p {
  max-width: 750px;
  margin: auto;
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* =========================
   SERVICES GRID
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* SERVICE CARD */
.service-box {
  background: rgba(255,255,255,0.95);
  border-radius: 26px;
  padding: 45px 35px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  position: relative;
}

.service-box:hover {
  transform: translateY(-14px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

/* ICON */
.service-box .icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

/* TITLE */
.service-box h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* DESCRIPTION */
.service-box p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FEATURES LIST */
.service-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.service-box ul li {
  font-size: 0.92rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  opacity: 0.9;
}

/* CHECK ICON */
.service-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #49a09d;
  font-weight: bold;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 30px;
  background: linear-gradient(120deg, #5f2c82, #49a09d);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================
   TRUST SECTION
========================= */
.trust-section {
  padding: 90px 8%;
  background: #f8f8f8;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .services-page {
    padding: 90px 6% 70px;
  }

  .services-head h1 {
    font-size: 2.6rem;
  }

  .trust-section {
    padding: 70px 6%;
  }
}
