/* ═══ Services page specific styles ═══ */

/* Service description paragraphs */
.svc-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.svc-desc-lg {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Feature visual large */
.feature-visual-lg {
  min-height: 340px;
}
.feature-svg {
  width: 100%;
  height: 340px;
}

/* Padded card */
.card-padded {
  padding: 28px;
}

/* Scale grid (maps section) */
.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.scale-card {
  background: var(--bg3);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.scale-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}
.scale-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 6px;
}
.scale-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.scale-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Card list title */
.card-list-title {
  margin-bottom: 24px;
  font-size: 18px;
}

/* Check list (GIS section) */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.check-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Large padded card */
.card-padded-lg {
  padding: 32px;
}

/* Service cards (bottom grid) */
.card-service {
  padding: 28px 20px;
}
.card-icon-center {
  margin: 0 auto 16px;
}
.card-title-sm {
  font-size: 16px;
}

/* Gallery slider for services screenshots */
.svc-gallery {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a2436;
  border: 1px solid var(--border);
}
.svc-gallery-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a2436;
}
.svc-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.svc-slide.active {
  opacity: 1;
}
.svc-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.svc-gallery-arrow:hover {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.35);
}
.svc-gallery-arrow-prev { left: 12px; }
.svc-gallery-arrow-next { right: 12px; }
.svc-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.svc-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.svc-gallery-dot:hover {
  background: rgba(255,255,255,0.6);
}
.svc-gallery-dot.active {
  background: var(--accent);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.2);
}
