/* ═══════════════════════════════════════════════════════════
   PAGES/SERVICE.CSS — Services page-specific styles
   Load FOURTH in service.html
═══════════════════════════════════════════════════════════ */

/* ── Section (override base .section for service page) ── */
.section { padding: 88px 0; }

/* ── Services List ── */
.services { background: var(--white); }

.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--white);
  transition: box-shadow .3s var(--ease);
}
.service-full:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.service-full:nth-child(even) { direction: rtl; }
.service-full:nth-child(even) > * { direction: ltr; }

.service-full__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-full:hover .service-full__image img {
  transform: scale(1.04);
}

.service-full__content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-full__icon svg { color: var(--blue); }

.service-full__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.service-full__desc { font-size: .92rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 20px; }

.service-full__features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-full__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-2);
}
.service-full__features li svg {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
  padding: 2px;
  box-sizing: content-box;
}


/* ── Service Area ── */
.service-area { background: var(--bg); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .service-full { grid-template-columns: 1fr; direction: ltr !important; }
  .service-full:nth-child(even) > * { direction: ltr; }
  .service-full__image { aspect-ratio: 16/9; }
}
