/* ===== IMMIGRATION PAGE - immigration.css ===== */

.im-hero {
  min-height: 60vh;
  padding-top: 80px;
  position: relative;
}

.im-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.im-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.im-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 21, 42, 0.95) 0%, rgba(0, 21, 42, 0.7) 100%);
}

.im-visa-card {
  border: 1px solid var(--rw-outline);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.im-visa-card:hover {
  transform: translateY(-8px);
  border-color: var(--rw-secondary);
  box-shadow: 0 20px 40px rgba(0, 21, 42, 0.1);
}

.im-visa-icon-box {
  width: 64px;
  height: 64px;
  background: var(--rw-surface-container);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rw-secondary);
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}

.im-visa-card:hover .im-visa-icon-box {
  background: var(--rw-secondary);
  color: #fff;
}

.im-country-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rw-surface-low);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rw-primary-container);
  margin-right: 6px;
  margin-bottom: 6px;
  transition: all 0.2s;
}

.im-visa-card:hover .im-country-pill {
  background: var(--rw-surface-container);
}

.im-process-step {
  position: relative;
  padding-left: 50px;
}

.im-process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--rw-secondary-container);
  color: var(--rw-on-secondary-container);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
