/* ===============================
   SECTION
================================ */
.service-cards-section {
  background: #FAFAFA;
  padding: 80px 0;
}

.service-cards-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================
   TITLE
================================ */
.service-cards-title {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #1A1A1A;
  margin-bottom: 40px;
}

/* ===============================
   GRID
================================ */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 307px);
  gap: 30px;
  justify-content: center;
}

/* ===============================
   CARD (LOCKED STRUCTURE)
================================ */
.service-card {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  padding: 32px 24px;

  display: grid;
  grid-template-rows:
    auto    /* icon */
    auto    /* title */
    90px   /* description */
    1fr!important;    /* links */

  justify-items: center; /* ✅ CENTER EVERYTHING HORIZONTALLY */
  align-items: start;
}

/* ===============================
   ICON (CENTER FIX)
================================ */
.service-card-icon {
  width: 100%;
  display: flex;
  justify-content: center; /* ✅ CENTER ICON */
}

.service-card-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 5px;
}

/* ===============================
   CARD TITLE
================================ */
.service-card-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 12px;
}

/* ===============================
   DESCRIPTION
================================ */
.service-card-desc {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  text-align: center;
  overflow: hidden;
}

/* ===============================
   LINKS (ALIGNED ROW)
================================ */
.service-card-links {
  width: 100%;
  padding: 0;
  list-style: none;
  justify-self: stretch; /* ✅ FULL WIDTH */
}

.service-card-links li {
  border-top: 1px solid #D9D9D9;
}

.service-card-links li:first-child {
  border-top: none;
}

.service-card-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
}

.service-card-links a:hover {
  color: #E4002B;
}

/* ===============================
   CHEVRON
================================ */
.service-card-links .chevron {
  color: #E4002B;
  font-size: 16px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 307px);
  }
}

@media (max-width: 640px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}
