/* Card Style: Sharp Bordered — 2px radius, thin 1px border, clean flat */

.service-card,
.fleet-card,
.about-card {
  background: #fff;
  border-radius: 2px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover,
.fleet-card:hover,
.about-card:hover {
  border-color: var(--primary, #1e3a5f);
}

/* Card icon / image area */
.service-card__icon,
.fleet-card__image,
.about-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: var(--surface-alt, #f5f0ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #1e3a5f);
  flex-shrink: 0;
}

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

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

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

/* 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.15rem 0.5rem;
  border-radius: 1px;
  border: 1px solid var(--accent, #d97706);
  color: var(--accent, #d97706);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

/* Card price / meta */
.service-card__price,
.fleet-card__meta {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary, #1e3a5f);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
