/* Card Style: Rounded Glow — 16px radius, colored glow/box-shadow on hover */

.service-card,
.fleet-card,
.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover,
.fleet-card:hover,
.about-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(var(--primary-rgb, 30, 58, 95), 0.12),
    0 0 0 1px rgba(var(--primary-rgb, 30, 58, 95), 0.06);
}

/* Card icon / image area */
.service-card__icon,
.fleet-card__image,
.about-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb, 30, 58, 95), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #1e3a5f);
  flex-shrink: 0;
}

.fleet-card__image {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  background: var(--surface-alt, #f5f0ea);
  object-fit: cover;
  overflow: hidden;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Card title */
.service-card__title,
.fleet-card__title,
.about-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-surface, #1a1a1a);
  line-height: 1.3;
}

/* Card description */
.service-card__desc,
.fleet-card__desc,
.about-card__desc {
  margin: 0;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
}

/* Card tag / badge */
.service-card__tag,
.fleet-card__tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb, 217, 119, 6), 0.12);
  color: var(--accent, #d97706);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  align-self: flex-start;
}

/* Card price / meta */
.service-card__price,
.fleet-card__meta {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary, #1e3a5f);
  margin-top: auto;
}
