/* ─── Contact Hub V3 ─── */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.2rem;
}

@media (min-width: 1024px) {
  .contact-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-category {
  display: flex;
  flex-direction: column;
}

.contact-category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--saab-red);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.contact-item {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  padding: 1.2rem;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.contact-item:hover {
  background: #fafafa;
  border-color: var(--saab-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item:hover .contact-item-title {
  color: var(--saab-red);
}

.contact-item:hover .contact-item-arrow {
  transform: translateX(5px);
  color: var(--saab-red);
}

.contact-item-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #141414;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.contact-item-desc {
  font-size: 0.72rem;
  color: #6d7178;
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-item-arrow {
  font-size: 0.76rem;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

