.page-immigration-project {
  overflow: hidden;
  background: #fff;
  color: #111;
}

.project-hero {
  min-height: 357px;
  background: url("../assets/images/immigration-project/hero-bg@2x.png") center / cover no-repeat;
  color: #fff;
}

.project-hero__inner {
  min-height: 357px;
  display: flex;
  align-items: center;
}

.project-hero__title {
  width: 337px;
  min-height: 95px;
  margin-left: 0;
  padding: 17px 24px 15px;
  background: url("../assets/images/immigration-project/hero-title-bg@2x.png") center / 100% 100% no-repeat;
}

.project-hero__title h1 {
  margin: 0;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.project-hero__title p {
  margin: 1px 0 0;
  font-size: 10px;
  line-height: 22px;
  text-transform: capitalize;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.project-breadcrumb {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  line-height: 22px;
  color: #999;
}

.project-breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color var(--transition);
}

.project-breadcrumb a:hover,
.project-breadcrumb span:last-child {
  color: #000;
}

.project-list-section {
  position: relative;
  padding: 0 0 103px;
}

.project-section-heading {
  margin: 0 auto;
  text-align: center;
}

.project-section-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 46px;
  font-weight: 500;
  color: #000;
}

.project-section-heading p {
  margin: -5px 0 0;
  font-size: 16px;
  line-height: 36px;
  color: #000;
  text-transform: uppercase;
}

.project-section-heading span {
  display: block;
  width: 67px;
  height: 3px;
  margin: 4px auto 0;
  background: #d82f2f;
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 461px);
  gap: 30px 29px;
  margin-top: 26px;
}

.project-card {
  position: relative;
  display: block;
  width: 461px;
  min-height: 329px;
  background: #f8f8f8;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  transform-origin: center center;
}

.project-card::after {
  content: "";
  position: absolute;
  right: 29px;
  bottom: 31px;
  width: 32px;
  height: 32px;
  background: url("../assets/images/immigration-project/project-cta@2x.png") center / 100% 100% no-repeat;
}

.project-card:hover {
  z-index: 1;
  transform: translateY(-9px) scale(1.056);
  background: #fff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.16);
}

.project-card:hover::after {
  right: 32px;
  bottom: 22px;
  width: 37px;
  height: 37px;
  background-image: url("../assets/images/immigration-project/project-cta-active@2x.png");
}

.project-card__cta {
  display: none;
}

.project-card img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.project-card__body {
  padding: 17px 24px 18px;
}

.project-card__body h3 {
  margin: 0 0 17px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
}

.project-card__body dl {
  margin: 0;
  display: grid;
  grid-template-columns: 86px 86px 1fr;
  column-gap: 13px;
  padding-right: 48px;
}

.project-card__body div {
  display: flex;
  flex-direction: column-reverse;
  gap: 1px;
  min-width: 0;
}

.project-card__body dt,
.project-card__body dd {
  margin: 0;
  white-space: nowrap;
}

.project-card__body dt {
  font-size: 12px;
  line-height: 24px;
  color: #333;
}

.project-card__body dd {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #d82f2f;
}

/* 与 immigration 页共用 .immigration-pagination / .immigration-backtop（见 css/immigration.css） */
@media (min-width: 769px) {
  .project-list-section .immigration-pagination {
    display: none;
  }
}


.plan-consult {
  min-height: 368px;
  background: url("../assets/images/immigration-project/consult-bg@2x.png") center / cover no-repeat;
  color: #fff;
}

.plan-consult__inner {
  min-height: 368px;
  padding-top: 55px;
  text-align: center;
}

.plan-consult h2 {
  font-size: 26px;
  line-height: 46px;
  font-weight: 500;
}

.plan-consult p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 35px;
}

.plan-consult__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 18px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.plan-consult__form label {
  display: grid;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.plan-consult__form em {
  color: #d82f2f;
  font-style: normal;
}

.plan-consult__form input {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 5px;
  padding: 0 18px;
  background: #fff;
  color: #333;
  font: inherit;
}

.plan-consult__form input::placeholder {
  color: #999;
}

.plan-consult__form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 160px;
  height: 38px;
  margin-top: 28px;
  padding: 0 28px;
  border: 0;
  border-radius: 5px;
  background: #d82f2f;
  color: #fff;
  font-size: 14px;
  line-height: 38px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.plan-consult__form button:hover {
  transform: translateY(-2px);
  background: #f23030;
  box-shadow: 0 10px 20px rgba(216, 47, 47, 0.25);
}

.project-advantages {
  padding: 82px 0 100px;
  background: #fff;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 43px;
  margin-top: 56px;
}

.advantage-card {
  min-height: 307px;
  padding: 51px 18px 32px;
  background: #f8f8f8;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.advantage-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.advantage-card img {
  display: block;
  width: 72px;
  height: 78px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.advantage-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 46px;
  font-weight: 500;
  color: #000;
}

.advantage-card p {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}
