/* ══════════════════════════
   SERVICES & TRUST STRIP
   ══════════════════════════ */
.services { background: #f0f2f5; }

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

/* Image-based dark cards */
.service-card {
  position: relative;
  background: var(--navy-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
  z-index: 3;
}
.service-card:hover::before { transform: scaleX(1); }

/* Card image */
.service-card-img {
  position: relative;
  height: 215px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,14,26,0.08) 0%, rgba(3,8,15,0.7) 100%);
  z-index: 1;
}

/* Icon floated over image */
.service-icon-wrap {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(212,146,10,0.45);
  transition: transform var(--t);
}
.service-card:hover .service-icon-wrap { transform: scale(1.1); }
.service-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #03080f;
  color: #03080f;
}

/* Card text body */
.service-card-body { padding: 1.25rem 1.5rem 1.75rem; }
.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  transition: gap var(--t), color var(--t);
}
.service-card-link i { font-size: 10px; transition: transform var(--t); }
.service-card-link:hover { color: var(--gold); }
.service-card-link:hover i { transform: translateX(3px); }

/* Trust strip */
.trust-strip {
  background: var(--navy);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-cell {
  padding: 30px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t);
}
.trust-cell:last-child { border-right: none; }
.trust-cell:hover { background: rgba(212,146,10,0.06); }

.trust-cell-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-cell-icon svg { width: 20px; height: 20px; color: var(--gold); }
.trust-cell h4 { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.trust-cell p  { font-size: 0.78rem; color: rgba(255,255,255,0.44); line-height: 1.5; }

@media (max-width: 1024px) {
  .trust-strip { grid-template-columns: repeat(2,1fr); border-radius: var(--r-lg); }
  .trust-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-cell:last-child { border-bottom: none; }
}
