/* --- Press Contact Section --- */
.press-hero {
  background-color: #f8f9fa;
  padding: 5rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.press-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.press-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* Efek garis merah dekoratif */
.deco-line {
  width: 80px;
  height: 3px;
  background: var(--honda-red);
  margin-bottom: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #eee;
  margin-top: 2rem;
  transition: 0.3s;
}

.contact-card:hover {
  border-color: var(--honda-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #ffebeb;
  color: var(--honda-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
}
