
/* ================================
   塭仔圳地主合建專頁
================================ */

.wunzizun-page {
  background: #f4f6f9;
  color: #102033;
}

.page-breadcrumb {
  padding: 20px 0 8px;
  font-size: 14px;
}

.page-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.wz-hero {
  padding: 36px 0 72px;
}

.wz-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wz-hero h1,
.section-title,
.wz-split h2,
.wz-final-cta h2 {
  color: #111827;
  line-height: 1.35;
  font-weight: 700;
}

.wz-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 22px;
}

.wz-hero__desc,
.section-desc,
.wz-split p,
.wz-card p,
.faq-item p {
  color: #435066;
  line-height: 1.9;
  font-size: 16px;
}

.wz-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.btn-outline {
  color: var(--primary);
  border: 1px solid rgba(13, 59, 102, 0.28);
  background: rgba(255,255,255,0.7);
}

.btn:hover {
  transform: translateY(-2px);
}

.wz-hero__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 35, 60, 0.14);
}

.wz-hero__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wz-hero__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.section {
  padding: 76px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

.wz-card-grid {
  display: grid;
  gap: 22px;
}

.wz-card-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.wz-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.wz-card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.wz-card,
.wz-split__note,
.wz-highlight-box,
.faq-item,
.wz-final-cta__box {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,151,0,0.18);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(15, 35, 60, 0.08);
}

.wz-card h3,
.wz-split__note h3,
.wz-highlight-box h3,
.faq-item h3 {
  color: #111827;
  font-size: 20px;
  margin-bottom: 12px;
}

.wz-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.wz-local,
.wz-ratio,
.wz-team,
.wz-faq {
  background: #fff;
}

.wz-process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.wz-process-item {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 14px 36px rgba(15,35,60,0.08);
}

.wz-process-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wz-check-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.wz-check-list li {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px 16px 48px;
  position: relative;
  box-shadow: 0 10px 28px rgba(15,35,60,0.06);
}

.wz-check-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: var(--secondary);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.wz-final-cta {
  background: linear-gradient(135deg, #0d3b66, #102033);
}

.wz-final-cta__box {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.94);
}

/* 平板 */
@media (max-width: 991px) {
  .wz-hero__grid,
  .wz-split {
    grid-template-columns: 1fr;
  }

  .wz-card-grid--5,
  .wz-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .wz-process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 手機 */
@media (max-width: 767px) {
  .wz-hero {
    padding: 24px 0 52px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    text-align: left;
    margin-bottom: 28px;
  }

  .wz-card-grid--5,
  .wz-card-grid--4,
  .wz-card-grid--2,
  .wz-process-list {
    grid-template-columns: 1fr;
  }

  .wz-card,
  .wz-split__note,
  .wz-highlight-box,
  .faq-item,
  .wz-final-cta__box {
    padding: 22px;
    border-radius: 20px;
  }

  .wz-hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/*---------------------------------------------------------------------*/
/* ================================
   塭仔圳頁面精進版補強 CSS
   請貼在 wenzaizun.css 最下面
================================ */

/* 全頁質感 */
.wunzizun-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(201,151,0,0.08), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

/* 每個 section 做出明顯過場 */
.section {
  position: relative;
  overflow: hidden;
}

.section + .section {
  border-top: 1px solid rgba(13, 59, 102, 0.06);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.section:nth-of-type(odd) {
  background: linear-gradient(180deg, #f1f4f8 0%, #ffffff 100%);
}

/* section 上方淡金線 */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 82%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    transparent,
    rgba(201,151,0,0.55),
    transparent
  );
}

/* 英文小標更精緻 */
.section-kicker {
  color: #0d3b66;
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
}

/* 標題不要亂斷 */
.section-title,
.wz-split h2,
.wz-final-cta h2,
.wz-hero h1 {
  color: #071a33;
  letter-spacing: 0.02em;
  line-height: 1.45;

  overflow-wrap: normal;
}

/* 內文閱讀感 */
.section-desc,
.wz-split p,
.wz-card p,
.faq-item p {
  color: #34445c;
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 卡片升級 */
.wz-card,
.wz-split__note,
.wz-highlight-box,
.faq-item,
.wz-final-cta__box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(201,151,0,0.28);
  border-radius: 28px;
  box-shadow:
    0 22px 55px rgba(15, 35, 60, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.wz-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(15, 35, 60, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* 卡片標題 */
.wz-card h3,
.wz-split__note h3,
.wz-highlight-box h3,
.faq-item h3 {
  color: #071a33;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  word-break: keep-all;
}

/* 五張卡片高度不要太硬 */
.wz-card-grid--5 .wz-card {
  min-height: 300px;
}

/* 四張卡片更穩 */
.wz-card-grid--4 .wz-card {
  min-height: 250px;
}

/* 左文右框區塊加大呼吸感 */
.wz-split {
  gap: 72px;
}

.wz-split__note,
.wz-highlight-box {
  padding: 42px;
}

/* 流程卡片 */
.wz-process-item {
  border-left: 0;
  border-top: 4px solid var(--secondary);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15,35,60,0.08);
}

/* 勾選清單更像高級表單 */
.wz-check-list {
  max-width: 980px;
}

.wz-check-list li {
  border-radius: 18px;
  padding: 18px 24px 18px 58px;
  font-size: 17px;
  line-height: 1.8;
  color: #12233a;
  box-shadow: 0 14px 38px rgba(15,35,60,0.07);
}

.wz-check-list li::before {
  left: 24px;
  top: 18px;
  font-size: 20px;
  color: #c99700;
}

/* FAQ 間距 */
.faq-list {
  max-width: 1080px;
  margin: 0 auto;
  gap: 24px;
}

.faq-item {
  padding: 34px 38px;
}

/* CTA 區塊更有結尾感 */
.wz-final-cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,151,0,0.18), transparent 24%),
    linear-gradient(135deg, #082844, #0d3b66 55%, #071a33);
}

.wz-final-cta__box {
  padding: 48px 56px;
}

/* 按鈕更精緻 */
.btn {
  min-height: 48px;
  padding: 13px 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(13,59,102,0.12);
}

.btn-primary:hover {
  background: #082844;
}

.btn-outline:hover {
  background: #fff;
  border-color: rgba(13,59,102,0.5);
}

/* 平板 */
@media (max-width: 991px) {
  .wz-split {
    gap: 34px;
  }

  .wz-card-grid--5,
  .wz-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wz-card-grid--5 .wz-card,
  .wz-card-grid--4 .wz-card {
    min-height: auto;
  }
}

/* 手機 */
@media (max-width: 767px) {
  .section {
    padding: 58px 0;
  }

  .section-header {
    text-align: left;
  }

  .section-title,
  .wz-split h2,
  .wz-final-cta h2,
  .wz-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.5;
    word-break: keep-all;
  }

  .section-desc,
  .wz-split p,
  .wz-card p,
  .faq-item p {
    font-size: 16px;
    line-height: 1.95;
  }

  .wz-card,
  .wz-split__note,
  .wz-highlight-box,
  .faq-item,
  .wz-final-cta__box {
    padding: 24px;
    border-radius: 22px;
  }

  .wz-card h3,
  .faq-item h3 {
    font-size: 20px;
  }

  .wz-check-list li {
    font-size: 16px;
    padding: 16px 20px 16px 52px;
  }

  .wz-final-cta {
    padding: 64px 18px;
  }

  .wz-final-cta__box {
    padding: 32px 22px;
  }
}


/*----------------------------*/
/* 修正卡片爆版 */
.wunzizun-page {
  overflow-x: hidden;
}

.wz-card-grid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 5張卡片不要硬塞一排 */
.wz-card-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

/* 卡片本身避免撐爆 */
.wz-card {
  min-width: 0;
  box-sizing: border-box;
}

/* 文字避免把卡片撐寬 */
.wz-card h3,
.wz-card p {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 中小桌機：改成 3 欄 */
@media (max-width: 1280px) {
  .wz-card-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 平板：改成 2 欄 */
@media (max-width: 991px) {
  .wz-card-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手機：改成 1 欄 */
@media (max-width: 767px) {
  .wz-card-grid--5 {
    grid-template-columns: 1fr;
  }
}


/*-----------------------------------------------------------*/
/* ================================
   塭仔圳地主合建頁｜新版版型 CSS
================================ */

/* 基本 */
.wunzizun-page {
  background: #f4f7fb;
  color: #071a33;
  overflow-x: hidden;
}

.wunzizun-page img {
  width: 100%;
  display: block;
}

.section {
  padding: 36px 0;
}

.section-header {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-kicker {
  display: block;
  margin : 16px 0 16px;
  color: #0d3b66;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.45;
  color: #071a33;
  margin : 16px 0px 16px;
  
}

.section-desc {
  color: #40516a;
  font-size: 17px;
  line-height: 2;
   margin : 16px 0px 16px;
}

/* ================================
   1. Hero
================================ */

.wz-hero-new {
  padding: 40px 0 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,151,0,0.16), transparent 26%),
    linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
}

.wz-hero-new__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.wz-hero-new h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.35;
  margin-bottom: 24px;
  padding-right: 6px ;
  color: #071a33;
  
}

.wz-hero-new h2 {
  font-size: 22px ;
    padding-right: 40px ;

}

.wz-hero-new p {
  max-width: 620px;
  color: #34445c;
  font-size: 16px;
  line-height: 1.5;
}

.wz-hero-new__actions,
.wz-contact-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary {
  background: #0d3b66;
  color: #fff;
  border: 1px solid #0d3b66;
}

.btn-outline {
  background: rgba(255,255,255,0.75);
  color: #0d3b66;
  border: 1px solid rgba(13,59,102,0.3);
}

.btn:hover {
  transform: translateY(-3px);
}

.wz-hero-new__media {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,35,60,0.16);
}

.wz-hero-new__media > img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.wz-hero-new__photo {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 38%;
  border: 6px solid #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.wz-hero-new__photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ================================
   2. 地主常見問題
================================ */

.wz-owner-problems {
  background: #fff;
}

.wz-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wz-problem-card {
  padding: 38px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(201,151,0,0.28);
  box-shadow: 0 22px 60px rgba(15,35,60,0.08);
}

.wz-problem-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: #c99700;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.wz-problem-card h3 {
  margin-bottom: 16px;
  color: #071a33;
  font-size: 24px;
  line-height: 1.5;
  word-break: keep-all;
}

.wz-problem-card p {
  color: #40516a;
  font-size: 17px;
  line-height: 2;
}

/* ================================
   3. 已整合多處基地
================================ */

.wz-land-cases {
  background: linear-gradient(180deg, #f3f6fa 0%, #fff 100%);
}

.wz-land-cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.wz-land-cases__media {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15,35,60,0.14);
}

.wz-land-cases__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wz-land-cases__content h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.45;
  margin-bottom: 22px;
  word-break: keep-all;
}

.wz-land-cases__content p {
  color: #40516a;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 32px;
}

.wz-land-list {
  display: grid;
  gap: 16px;
}

.wz-land-item {
  padding: 22px 24px;
  border-radius: 20px;
  background: #fff;
  border-left: 5px solid #c99700;
  box-shadow: 0 16px 42px rgba(15,35,60,0.08);
}

.wz-land-item strong {
  display: block;
  margin-bottom: 6px;
  color: #071a33;
  font-size: 20px;
}

.wz-land-item span {
  color: #40516a;
  font-size: 16px;
}

/* ================================
   4. 為什麼選擇武泰
================================ */

.wz-why-wutai {
  background: #fff;
}

.wz-story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.wz-story-row:last-child {
  margin-bottom: 0;
}

.wz-story-row--reverse .wz-story-row__image {
  order: 2;
}

.wz-story-row__image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 68px rgba(15,35,60,0.13);
}

.wz-story-row__image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wz-story-row__text {
  padding: 16px 0;
}

.wz-story-row__text span {
  display: inline-block;
  margin-bottom: 18px;
  color: #c99700;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.wz-story-row__text h3 {
  margin-bottom: 18px;
  color: #071a33;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
}

.wz-story-row__text p {
  color: #40516a;
  font-size: 18px;
  line-height: 2.05;
}

/* ================================
   5. Timeline
================================ */

.wz-process-timeline {
  background: linear-gradient(180deg, #eef3f8 0%, #fff 100%);
}

.wz-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.wz-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 32px;
  width: 2px;
  background: linear-gradient(to bottom, #c99700, rgba(201,151,0,0.1));
}

.wz-timeline-item {
  position: relative;
  padding: 0 0 42px 92px;
}

.wz-timeline-item:last-child {
  padding-bottom: 0;
}

.wz-timeline-item span {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0d3b66;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(13,59,102,0.24);
}

.wz-timeline-item h3 {
  margin-bottom: 10px;
  color: #071a33;
  font-size: 24px;
}

.wz-timeline-item p {
  color: #40516a;
  font-size: 17px;
  line-height: 1.9;
}

/* ================================
   6. Google 評論
================================ */

.wz-testimonials {
  background: #fff;
}

.wz-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.wz-review-card {
  padding: 16px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(201,151,0,0.24);
  box-shadow: 0 20px 56px rgba(15,35,60,0.08);
}

.wz-review-card img {
  border-radius: 18px;
}

/* ================================
   7. CTA
================================ */

.wz-contact-cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,151,0,0.16), transparent 24%),
    linear-gradient(135deg, #082844, #0d3b66 55%, #071a33);
}

.wz-contact-cta__box {
  max-width: 940px;
  margin: 0 auto;
  padding: 54px 64px;
  text-align: center;
  border-radius: 34px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 28px 72px rgba(0,0,0,0.16);
}

.wz-contact-cta__box h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.45;
  margin-bottom: 18px;
  color: #071a33;
  word-break: keep-all;
}

.wz-contact-cta__box p {
  color: #40516a;
  font-size: 17px;
  line-height: 2;
}

.wz-contact-cta__actions {
  justify-content: center;
}

/* ================================
   平板
================================ */

@media (max-width: 991px) {
  .wz-hero-new__grid,
  .wz-land-cases__grid,
  .wz-story-row {
    grid-template-columns: 1fr;
  }

  .wz-story-row--reverse .wz-story-row__image {
    order: 0;
  }

  .wz-problem-grid,
  .wz-review-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   手機
================================ */

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .section-header {
    text-align: left;
    margin-bottom: 16px;
  }

  .wz-hero-new {
    padding: 18px 16px 38px;
  }

  .wz-hero-new h1 {
    font-size: 34px;
  }

  .wz-hero-new p {
    font-size: 16px;
  }

  .wz-hero-new__photo {
    width: 48%;
    left: 18px;
    bottom: 18px;
    border-width: 4px;
  }

  .wz-problem-card,
  .wz-contact-cta__box {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .wz-land-cases__grid,
  .wz-story-row {
    gap: 34px;
  }

  .wz-story-row {
    margin-bottom: 54px;
  }

  .wz-timeline::before {
    left: 24px;
  }

  .wz-timeline-item {
    padding-left: 72px;
  }

  .wz-timeline-item span {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .wz-contact-cta {
    padding: 64px 18px;
  }

  .wz-hero-new__actions,
  .wz-contact-cta__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/*------------------------------------------------*/
/* Hero右側卡片 */

.hero-project-card{
    max-width:520px;
    margin-left:auto;

    background:#fff;
    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    text-decoration:none;
    color:inherit;

    transition:.3s;
}

.hero-project-card:hover{
    transform:translateY(-6px);
}

.hero-project-card .project-card-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.hero-project-card .project-card-body{
    padding: 12px;
}

.hero-project-card .project-card-title{
    font-size:24px;
    margin-bottom: 0 ;
}

.hero-project-card .project-card-desc{
    line-height:1.5;
    margin: 0 ;
}

.hero-project-card .project-card-link-label{
    display:inline-block;
    margin-top:0px;
    color:#c99700;
    font-weight:700;
}


/*-------------------------------------------------------------------*/

/* =========================================================
   塭仔圳合建頁｜得獎實績影片區
   ========================================================= */

.page-wunzizun .wz-awards-video{
  padding: 22px 0 26px;
   
  border-top: 1px solid rgba(0,0,0,.06);
}

.page-wunzizun .wz-awards-head{
  position: relative;
  margin: 0 0 22px;
  padding: 8px 0 16px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-wunzizun .wz-awards-head::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  border-radius:999px;
  background: linear-gradient(
    90deg,
    rgba(201,151,0,0) 0%,
    rgba(201,151,0,.85) 20%,
    rgba(201,151,0,.35) 60%,
    rgba(201,151,0,0) 100%
  );
}

.page-wunzizun .wz-awards-head .section-title{
  margin: 0;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--wt-blue-900, #0d3b66);
}

.page-wunzizun .wz-awards-sub{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 999px;

  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: .04em;

  color: rgba(17,24,39,.78);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.page-wunzizun .wz-awards-sub::before{
  content:"";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6cc, #c99700 70%);
  box-shadow:
    0 0 0 3px rgba(201,151,0,.18),
    inset 0 -2px 0 rgba(0,0,0,.18);
}



.page-wunzizun .wz-yt-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.page-wunzizun .wz-yt-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(201,151,0,.20);
  border-color: rgba(201,151,0,.22);
}

.page-wunzizun .wz-yt-embed{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.page-wunzizun .wz-yt-embed iframe{
  width: 100%;
  height: 100%;
  display: block;
}

.page-wunzizun .wz-yt-title{
  margin: 0;
  padding: 12px 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 800;
  color: rgba(17,24,39,.90);
}




@media (max-width: 640px){
  .page-wunzizun .wz-awards-video{
    padding: 32px 0 10px;
  }

  .page-wunzizun .wz-awards-head{
    align-items: flex-start;
  }


  

  .page-wunzizun .wz-awards-sub{
    font-size: 12.5px;
  }
}



/*------------------------*/



/*---------------------------------*/
.wz-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.wz-review-card {
    background: #fff;
    border: 1px solid rgba(201,151,0,.22);
    border-radius: 24px;
    padding: 32px 28px;

    box-shadow: 0 12px 32px rgba(15,35,60,.06);

    transition: all .3s ease;
}

.wz-review-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(15,35,60,.10);
}

.wz-review-stars {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.wz-review-text {
    color: #5a6677;
    line-height: 1.9;
    min-height: 110px;
}

.wz-review-author {
    margin-top: 26px;
    font-size: 20px;
    font-weight: 700;
    color: #10233f;
}


/*--------------*/
.wz-review-more {
    text-align: center;
    margin-top: 42px;
}

.wz-review-count {
    color: #7d8794;
    margin-bottom: 20px;
    font-size: 15px;
}


.wz-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    border: 2px solid #c99700;
    border-radius: 999px;

    background: #fff;

    color: #c99700;

    text-decoration: none;

    font-weight: 700;

    transition: all .3s ease;
}

.wz-review-btn:hover {
    background: #c99700;
    color: #fff;

    transform: translateY(-2px);
}


.wz-write-review {
    display: block;

    margin-top: 18px;

    color: #7d8794;

    text-decoration: none;

    font-size: 14px;
}

.wz-write-review:hover {
    color: #c99700;
}

@media (max-width: 768px) {

    .wz-review-grid {
        grid-template-columns: 1fr;
    }

    .wz-review-text {
        min-height: auto;
    }

    .wz-review-btn {
        width: 100%;
    }

}

/*------------------------------*/
.wz-testimonials .wz-review-grid,
.wz-testimonials .wz-review-more {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.wz-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

/*-------評論區 手機板-----------------------------*/
@media (max-width: 640px){
  .page-wunzizun .wz-testimonials{
    padding: 16px 10px 10px;
  }
   }

/*-----------------*/

@media (max-width: 768px) {

  .wz-testimonials .container {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .wz-review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .wz-review-card {
    width: 100%;
    padding: 26px 22px;
    border-radius: 20px;
    min-height: auto;
  }

  .wz-review-text {
    min-height: auto;
    font-size: 15px;
    line-height: 1.8;
  }

  .wz-review-author {
    margin-top: 22px;
    font-size: 17px;
  }

  .wz-review-more {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .wz-review-count {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .wz-review-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }

  .wz-write-review {
    max-width: 320px;
    margin: 16px auto 16px;
    font-size: 13px;
    line-height: 1.6;
  }

}


/*--------------------------------------------------------------*/
.wz-reviews-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.wz-reviews-head {
  text-align: center;
  margin-bottom: 36px;
}

.wz-reviews-head h2 {
  font-size: 36px;
  color: #0b223d;
  margin-bottom: 12px;
}

.wz-reviews-head p {
  color: #748195;
  font-size: 16px;
}

.wz-review-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.wz-review-viewport {
  overflow: hidden;
  padding: 10px 0 20px;
}

.wz-review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.wz-review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid #f1dfb8;
  border-radius: 22px;
  padding: 34px 28px;
  min-height: 270px;
  box-shadow: 0 18px 45px rgba(15, 35, 55, 0.08);
  display: flex;
  flex-direction: column;
}

.wz-review-stars {
  color: #d99a00;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom:  0;
}

.wz-review-text {
  color: #6f7d91;
  font-size: 15px;
  line-height: 2;
  margin :  0 ;
}

.wz-review-author {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 700;
  color: #0b223d;
}

.wz-review-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d99a00;
  background: #fff;
  color: #d99a00;
  font-size: 34px;
  line-height: 38px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 35, 55, 0.12);
}

.wz-review-prev {
  left: -60px;
}

.wz-review-next {
  right: -60px;
}

.wz-review-arrow:hover {
  background: #d99a00;
  color: #fff;
}

/* 手機板 */
@media (max-width: 768px) {
  .wz-reviews-section {
    padding: 56px 16px;
  }

  .wz-reviews-head h2 {
    font-size: 28px;
  }

  .wz-review-carousel {
    max-width: 100%;
  }

  .wz-review-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .wz-review-viewport::-webkit-scrollbar {
    display: none;
  }

  .wz-review-track {
    gap: 16px;
    transition: none;
  }

  .wz-review-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
    min-height: 250px;
  }

  .wz-review-arrow {
    display: none;
  }
}

/*-----------------------------------------------------------------*/
.wz-testimonials {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.wz-review-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.wz-review-viewport {
  overflow: hidden;
  padding:  14px ;
}

.wz-review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.wz-review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 3px solid #f1dfb8;
  border-radius: 22px;
  padding: 10px 10px;
  min-height: 100px;
  max-height: 200px;
  box-shadow: 0 18px 45px rgba(15, 35, 55, 0.08);
  display: flex;
  flex-direction: column;
}

.wz-review-more {
  text-align: center;
  margin-top: 32px 0 32px ;
}

@media (max-width: 768px) {
  .wz-review-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .wz-review-track {
    gap: 16px;
  }

  .wz-review-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .wz-review-arrow {
    display: none;
  }
}


/*---------------------------------------------*/
.wz-yt-carousel{
    position:relative;
    max-width:1100px;
    margin:40px auto 0;
}

.wz-yt-viewport{
    overflow:hidden;
}

.wz-yt-track{
    display:flex;
    gap:20px;
    transition:transform .45s ease;
}

.wz-yt-card{
    flex:0 0 calc((100% - 40px)/3);

    background:#fff;

    border-radius:16px;
    overflow:hidden;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 16px 34px rgba(0,0,0,.10);
}

.wz-yt-embed{
    aspect-ratio:16/9;
}

.wz-yt-embed iframe{
    width:100%;
    height:100%;
    display:block;
}

.wz-yt-title{
    padding:14px;
    font-size:15px;
    line-height:1.7;
    font-weight:700;
}

.wz-yt-arrow{
    position:absolute;
    top:45%;

    transform:translateY(-50%);

    width:44px;
    height:44px;

    border:none;
    border-radius:50%;

    background:#fff;

    color:#c99700;

    font-size:34px;

    cursor:pointer;

    box-shadow:0 10px 24px rgba(0,0,0,.12);

    z-index:10;
}

.wz-yt-prev{
    left:-60px;
}

.wz-yt-next{
    right:-60px;
}

.wz-yt-arrow:hover{
    background:#c99700;
    color:#fff;
}


@media (max-width:768px){

    .wz-yt-viewport{
        overflow-x:auto;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;
    }

    .wz-yt-viewport::-webkit-scrollbar{
        display:none;
    }

    .wz-yt-track{
        gap:16px;
        transition:none;
    }

    .wz-yt-card{
        flex:0 0 88%;

        scroll-snap-align:center;
    }

    .wz-yt-arrow{
        display:none;
    }
}

/*---------------------------*/
.page-wunzizun .wz-awards-video{
    overflow: visible;
}

.page-wunzizun .wz-yt-carousel{
    overflow: visible;
}


.wz-review-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.wz-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}


/*--------------------------------------------*/
/* ================================
   iPhone Hero 爆版修正
================================ */
@media (max-width: 767px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .wunzizun-page,
  .wz-hero-new,
  .wz-hero-new .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .wz-hero-new__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wz-hero-new h1 {
    font-size: 30px;
    line-height: 1.35;
    max-width: 100%;
  }

  .wz-hero-new h2 {
    font-size: 18px;
    line-height: 1.8;
    max-width: 100%;
  }

  .wz-hero-new__actions {
    width: 100%;
  }

  .wz-hero-new__actions .btn {
   width: 88%;
    max-width: 200px;
    margin: 0 auto;

    box-sizing: border-box;
    white-space: normal;
  }

  .wz-hero-new__media {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
  }

  .hero-project-card {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .hero-project-card .project-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hero-project-card .project-card-body {
    padding: 18px;
  }

  .hero-project-card .project-card-title {
    font-size: 24px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .hero-project-card .project-card-meta,
  .hero-project-card .project-card-desc {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
}


/*----------------------------------------*/
/* ================================
   Google評論卡片文字被卡住修正
================================ */
.wz-review-card {
  max-height: none;
  min-height: 190px;
  height: auto;
}

.wz-review-text {
  min-height: auto;
}

.wz-review-author {
  margin-top: auto;
  padding-top: 14px;
  line-height: 1.3;
}

/* 手機板評論卡 */
@media (max-width: 768px) {
  .wz-review-card {
    flex: 0 0 86%;
    max-height: none;
    min-height: 190px;
    padding: 18px 18px 20px;
    box-sizing: border-box;
  }

  .wz-review-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .wz-review-author {
    font-size: 18px;
    margin-top: auto;
    padding-top: 12px;
  }
}


/*--------------------------------------*/


/*-----------------------------*/
/* Hero 卡片外框修正：拿掉雙層背景 */
.wz-hero-new__media {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* 手機版 Hero */
@media (max-width: 767px) {
  .wz-hero-new {
    padding: 18px 16px 38px;
  }

  .wz-hero-new__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-project-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}


/*------------------------*/
@media (max-width: 767px) {
    .wz-hero-new__grid {
        
       padding: 0;
    }
}



/*----------------------------------------*/
/* ================================
   iPhone 17 Pro 手機爆版修正
   貼在 wenzaizun.css 最下面
================================ */

@media (max-width: 767px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-wrapper,
  .wunzizun-page,
  .wz-hero-new,
  .wz-testimonials,
  .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* 修正 Hero 左右被撐爆 */
  .wz-hero-new {
    padding: 0px 8px 16px;
  }

  .wz-hero-new__grid {
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
    gap: 24px;
  }

  /* 標題允許換行 */
  .wz-hero-new h1,
  .section-title {
    font-size: 28px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .wz-hero-new h2,
  .section-desc {
    font-size: 15.2px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  /* 按鈕不要被推到右邊 */
  .wz-hero-new__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .wz-hero-new__actions .btn {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    white-space: normal;
  }

  /* Hero 右側卡片 */
  .hero-project-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .hero-project-card * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 評論區標題不要爆 */
  .wz-testimonials .section-header {
    text-align: left;
    padding: 0 18px;
  }

  .wz-testimonials .section-title {
    font-size: 28px;
  }

  /* 評論輪播不要撐出畫面 */
  .wz-review-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .wz-review-viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 10px 20px;
  }

  .wz-review-track {
    gap: 0;
  }

  .wz-review-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .wz-review-text {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .wz-review-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }
}

/*--------------------------------------------*/
@media (max-width:768px){

    /* 左右留白 */
    .wz-review-viewport{
        padding: 0 16px;
        overflow: hidden;
    }

    /* 卡片之間保留距離 */
    .wz-review-track{
        gap: 16px;
    }

    /* 卡片寬度扣掉左右留白 */
    .wz-review-card{
        flex: 0 0 calc(100% - 32px);
        box-sizing: border-box;
    }

}

/*--------------------------------------------------*/
.wz-hero-new__grid{
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
}

.hero-project-card{
    max-width:400px;
    margin-left:auto;
}

.hero-project-card .project-card-image img{
    height:170px;
}

.hero-project-card .project-card-title{
    font-size:20px;
}


/* 桌機版才縮小 Hero 右側卡片 */
@media (min-width: 768px) {

  .wz-hero-new__grid{
      grid-template-columns: 1.3fr 0.7fr;
      gap: 32px;
  }

  .hero-project-card{
      max-width:400px;
      margin-left:auto;
  }

  .hero-project-card .project-card-image img{
      height:170px;
  }

  .hero-project-card .project-card-title{
      font-size:20px;
  }

}


/* 手機版強制回一欄，避免爆版 */
@media (max-width: 767px) {

  .wz-hero-new__grid{
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .hero-project-card{
      width:100%;
      max-width:100%;
      margin:0;
  }

  .hero-project-card .project-card-image img{
      width:100%;
      height:auto;
      aspect-ratio: 4 / 3;
      object-fit:cover;
  }

}

/*-----------------------------------------------*/
.page-wunzizun .wz-awards-video{
    background: transparent !important;
}

.wz-awards-video,
.wz-awards-video .container,
.wz-yt-carousel,
.wz-yt-viewport,
.wz-yt-track{
  background: #f4f7fb !important;
}



/*-------------------------------*/
/* 桌機版：影片區改成自然 grid，像得獎實績 */
@media (min-width: 769px){

  .wz-yt-carousel{
    max-width: 1100px;
    margin: 40px auto 0;
  }

  .wz-yt-viewport{
    overflow: visible;
    background: transparent !important;
  }

  .wz-yt-track{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: transparent !important;
    transform: none !important;
  }

  .wz-yt-card{
    flex: none !important;
    width: auto;
  }

  .wz-yt-arrow{
    display: none !important;
  }
}


.wz-yt-card:hover{
    transform: translateY(-6px);
}

/*---------------------------------------------------------*/
/* ================================
   3部 YouTube 手機爆版修正
   貼在 wenzaizun.css 最下面
================================ */

@media (max-width: 768px){

  .wz-awards-video{
    padding: 48px 0 28px;
    overflow: hidden !important;
  }

  .wz-awards-video .container{
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden !important;
    box-sizing: border-box;
  }

  .wz-yt-carousel{
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
    overflow: hidden !important;
  }

  .wz-yt-viewport{
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .wz-yt-viewport::-webkit-scrollbar{
    display: none;
  }

  .wz-yt-track{
    display: flex !important;
    gap: 14px;
    width: max-content;
    transform: none !important;
  }

  .wz-yt-card{
    flex: 0 0 calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  .wz-yt-title{
    font-size: 14px;
    line-height: 1.65;
    padding: 12px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .wz-yt-arrow{
    display: none !important;
  }
}
