/**
 * 元件樣式 - 忠泰大華企業
 * 各種 UI 元件的樣式
 */

/* ===== Header 導覽列 ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--spacing-4);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}

.header__nav-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-700);
  padding: var(--spacing-2) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-primary);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

/* 漢堡選單按鈕 */
.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-700);
  transition: all var(--transition-fast);
}

/* ===== Hero 主視覺區 ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  height: var(--app-height, 100vh);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-4);
  max-width: 800px;
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-8);
  opacity: 0.9;
}

/* ===== 區塊標題 ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}

.section-header__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.section-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: var(--spacing-4) auto 0;
}

/* ===== 卡片 ===== */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card__body {
  padding: var(--spacing-6);
}

.card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-3);
  color: var(--color-gray-800);
}

.card__text {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

/* ===== Footer 頁尾 ===== */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--spacing-12) 0 var(--spacing-6);
}

.footer__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-4);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-8);
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-4);
  color: var(--color-secondary);
}

.footer__text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-300);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-gray-300);
  padding: var(--spacing-1) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-secondary);
}

.footer__copyright {
  text-align: center;
  padding-top: var(--spacing-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-sm);
  color: var(--color-gray-400);
}

/* ===== 返回頂部按鈕 ===== */
.back-to-top {
  position: fixed;
  bottom: var(--spacing-6);
  right: var(--spacing-6);
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-4px);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

/* ===== 載入動畫 ===== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
}

.loading__dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  animation: loadingBounce 1.4s ease-in-out infinite both;
}

.loading__dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading__dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loadingBounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* ===== 提示訊息 ===== */
.alert {
  padding: var(--spacing-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-4);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
}

.alert--success {
  background-color: #dcfce7;
  color: var(--color-success);
  border-left: 4px solid var(--color-success);
}

.alert--error {
  background-color: #fee2e2;
  color: var(--color-error);
  border-left: 4px solid var(--color-error);
}

.alert--warning {
  background-color: #fef3c7;
  color: #92400e;
  border-left: 4px solid var(--color-warning);
}

.alert--info {
  background-color: #e0f2fe;
  color: var(--color-info);
  border-left: 4px solid var(--color-info);
}

/* ===== 全螢幕滾動 (Full Page Scroll) ===== */
.fullpage-scroll {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  height: var(--app-height, 100vh);
}

.fullpage-container {
  height: 100vh;
  height: 100dvh;
  height: var(--app-height, 100vh);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  /* 隱藏滾動條 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.fullpage-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

.fullpage-section {
  height: 100vh;
  height: 100dvh;
  height: var(--app-height, 100vh);
  min-height: 100vh;
  min-height: 100dvh;
  min-height: var(--app-height, 100vh);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}


/* ===== 首頁 Hero Section ===== */
.hero-home {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 背景圖片 */
.hero-home__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-home__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 背景疊加層（可選，調整亮度） */
.hero-home__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  pointer-events: none;
}

/* 右上角導覽按鈕 */
.hero-home__nav {
  position: absolute;
  top: var(--spacing-6);
  right: var(--spacing-6);
  display: flex;
  gap: var(--spacing-4);
  z-index: 10;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  color: var(--color-gray-700);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.nav-btn:hover {
  transform: translateY(-2px);
  color:var(--color-secondary);
}

.nav-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-btn__text {
  white-space: nowrap;
}

/* 中央主視覺內容 */
.hero-home__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-4);
}

.hero-home__logo {
  width: 100%;
  height: auto;
  max-width: 480px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.hero-home__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-800);
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--spacing-10);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-home__slogan {
  display: flex;
  align-items: flex-end;
  gap: var(--spacing-2);
}

.hero-home__slogan-zh {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-700);
  letter-spacing: var(--letter-spacing-wide);
}

.hero-home__slogan-en {
  font-family: var(--font-english);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-600);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
}

/* 向下滾動提示 */
.hero-home__scroll-hint {
  position: absolute;
  bottom: var(--spacing-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-hint__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: var(--font-size-xl);
  color: var(--color-gray-500);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

/* ===== 滿版圖片區塊 ===== */
.fullpage-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-100);
}

.fullpage-image picture {
  width: 100%;
  height: 100%;
}

.fullpage-image__img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  object-position: bottom;
}

/* ===== 第三屏 建築師介紹區塊 ===== */
.architect-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding-left: 8%;
}

/* 淺藍色底部裝飾條 */
.architect-section__deco {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 25%;
  background-color: rgb(188, 209, 226);
  z-index: 0;
}

/* 左側文字內容 */
.architect-section__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-right: var(--spacing-8);
}

.architect-section__title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-6);
}

.architect-section__title-light {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: #5ba3c0;
  letter-spacing: var(--letter-spacing-wide);
}

.architect-section__title-name {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  letter-spacing: var(--letter-spacing-wider);
}

.architect-section__desc {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-gray-800);
  line-height: var(--line-height-relaxed);
  text-align: justify;
}

/* 右側人物圖片 */
.architect-section__image {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
}

.architect-section__image .architect-section-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

/* 簽名區塊 */
.architect-section__signature {
  position: absolute;
  left: 5%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}

.architect-section__signature-img {
  width: auto;
  height: auto;
  max-width: 180px;
  object-fit: contain;
}

.architect-section__signature-name {
  font-size: 0.875rem;
  color: var(--color-text);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}

/* ===== 第四屏 橫跨世界的建築軌跡 ===== */
.arch-works-section {
  display: flex;
  align-items: center;
  background-color: #FFF;
  padding: 6vh 5% 6vh 8%;
  gap: 5%;
}

/* 左側文字區 */
.arch-works-section__content {
  flex: 0 0 auto;
  width: 28%;
  display: flex;
  flex-direction: column;
}

.arch-works-section__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-12);
}

.arch-works-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.arch-works-section__list li {
  font-size: var(--font-size-base);
  color: var(--color-gray-700);
  line-height: var(--line-height-normal);
  text-align: justify;
}

/* 右側圖片組容器 */
.arch-works-section__gallery {
  flex: 1;
  height: 78vh;
}

/* 圖片外框主體 */
.arch-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* 每一排 */
.arch-gallery__row {
  display: flex;
  
  gap: 3px;
  min-height: 0;
}
.arch-gallery__row--top{
  flex: 2;
}
.arch-gallery__row--bottom{
  flex: 5;
}

/* 單張圖片格 */
.arch-gallery__item {
  position: relative;
  flex: 1;
  overflow: hidden;
  background-color: var(--color-gray-200);
  min-width: 0;
  min-height: 0;
}

/* 寬圖片格（上排大圖 / 下排大圖） */
.arch-gallery__row--top .arch-gallery__item--wide {
  flex: 2.4;
}

.arch-gallery__row--bottom .arch-gallery__item--wide {
  flex: 2;
}

/* 下排高度限制 */
.arch-gallery__row--bottom {
  max-height: 50%;
}

/* 下排左側堆疊欄 */
.arch-gallery__col-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  min-height: 0;
}

.arch-gallery__col-stack .arch-gallery__item {
  flex: 1;
}

/* 圖片填滿格子 */
.arch-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 圖片說明文字 */
.arch-gallery__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  line-height: 1.4;
}

/* ===== 第五屏 水晶體文案區塊 ===== */
.crystal-section {
  display: flex;
  justify-content: flex-end;
}

.crystal-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.crystal-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.crystal-section__content {
  position: relative;
  z-index: 5;
  text-align: right;
  padding-top: 14rem;
  margin-right: 10%;
  width:555px;
}

.crystal-section__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--spacing-4);
}

.crystal-section__subtitle {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  text-align: right;
  margin-bottom: var(--spacing-8);
}

.crystal-section__desc {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-secondary);
  line-height: var(--line-height-normal);
  text-align: left;
  letter-spacing: var(--letter-spacing-wider);
  max-width: 31.5rem;
  margin-left: auto;
}

.crystal-section__disclaimer {
  display: none;
}

/* ===== 第六屏 南港昆陽新核心 ===== */
.landmark-section {
  position: relative;
  overflow: hidden;
}

/* ===== 第二屏 滿版圖片標題 ===== */
.fullpage-image__title {
  position: absolute;
  top: var(--spacing-24);
  left: var(--spacing-24);
  z-index: 5;
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-wide);
  white-space: nowrap;
}

/* ===== 第七、八屏 產業動能 / 交通樞紐 ===== */
.industry-section {
  position: relative;
  overflow: hidden;
}

/* 滿版背景圖片 */
.industry-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.industry-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 背景暗化疊層 */
.industry-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 10%,
    rgba(255, 255, 255, 0) 40%
  );
}

.industry-section__image-label {
  position: absolute;
  left: var(--spacing-8);
  bottom: var(--spacing-8);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-wide);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* 右上角文字內容 */
.industry-section__content {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 760px;
  margin-left: auto;
  margin-right: var(--spacing-12);
  padding: var(--spacing-12) var(--spacing-8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  box-sizing: border-box;
}

.industry-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: 1.4;
  margin-bottom: var(--spacing-6);
  letter-spacing: var(--letter-spacing-wide);
}

.industry-section__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: var(--letter-spacing-normal);
}

/* ===== 第八屏 交通樞紐 ===== */
.transit-section {
  position: relative;
  overflow: hidden;
}

/* 滿版背景圖片 */
.transit-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.transit-section__bg img {
  object-fit: cover;
}

@media (orientation: landscape) {
  .transit-section__bg img {
    width: 100%;
    height: 100%;
  }
}

@media (orientation: portrait) {
  .transit-section__bg img {
    width: auto;
    height: 100%;
  }
}

/* 背景暗化疊層 */
.transit-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.transit-section__image-label {
  position: absolute;
  left: var(--spacing-8);
  bottom: var(--spacing-8);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-wide);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* 右上角文字內容 */
.transit-section__content {
  position: relative;
  z-index: 1;
  width: 60%;
  right:0%;
  max-width: 860px;
  margin-left: auto;
  margin-right: var(--spacing-12);
  padding: var(--spacing-12) var(--spacing-8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

.transit-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: var(--spacing-6);
  letter-spacing: var(--letter-spacing-wide);
  text-wrap: nowrap;
}
.transit-section__title_sub {
  font-family: var(--font-heading);
  font-size: 1.33rem;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: var(--spacing-6);
  letter-spacing: var(--letter-spacing-wide);
  text-wrap: nowrap;
}

.transit-section__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: var(--font-weight-normal);
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: var(--letter-spacing-normal);
  text-align: justify;
  max-width:700px;
}

/* 滑動提示（桌機預設隱藏，手機版才顯示） */
.transit-section__swipe-hint {
  display: none;
}

/* ===== 第七至八屏 預留區塊 ===== */
.placeholder-section {
  background-color: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-section--image {
  position: relative;
  overflow: hidden;
}

.placeholder-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.placeholder-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-section__label {
  position: relative;
  z-index: 5;
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--spacing-4) var(--spacing-8);
  border-radius: var(--radius-md);
}

/* ===== 第九屏 商辦介紹 ===== */
.office-section {
  position: relative;
  overflow: hidden;
}

/* 滿版背景圖片 */
.office-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.office-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: bottom;
}

/* 底部漸層遮罩 + 文字覆蓋區 */
.office-section__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 88%, transparent 100%);*/
  padding: var(--spacing-6) 6% 3rem;
}

.office-section__title-wrap {
  flex: 4 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--spacing-6) var(--spacing-8);
}

.office-section__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-wide);
  text-align: left;
}

.office-section__title-sub {
  font-size: 0.75em;
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wider);
}

.office-section__desc-wrap {
  flex: 6 1 0;
  display: flex;
  align-items: center;
  padding: var(--spacing-6) var(--spacing-8);
  min-height: calc(var(--font-size-lg) * var(--line-height-relaxed) * 3);
}

.office-section__desc {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.office-section__desc-item {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
  margin-bottom: 0;
  text-align: justify;
}

/* crystal-section__desc 後半段已在此一起結尾 */
.crystal-section__desc_placeholder_end {
  display: none;
}

/* ===== 第十屏 精工建築 核心標的 ===== */
.craft-section {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  overflow: hidden;
}

/* 上方：標題 + 說明文字列 */
.craft-section__header {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 8rem 30rem;
  gap: var(--spacing-12);
}

.craft-section__title-col {
  display: flex;
  align-items: center;
  padding-right: var(--spacing-12);
  justify-content: flex-end;
}

.craft-section__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-wider);
  white-space: nowrap;
}

.craft-section__desc-col {
  display: flex;
  align-items: center;
}

.craft-section__desc {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-black);
  line-height: var(--line-height-loose);
  letter-spacing: var(--letter-spacing-normal);
  text-align: justify;
}

/* 下方：輪播區（非滿版，左側對齊 header 內距，右側溢出並漸層） */
.craft-section__carousel-wrap {
  flex: 6;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0 0 var(--spacing-8) var(--spacing-16);
}

/* 覆寫 Swiper 預設的 overflow:hidden，使第二張牌顯示出來 */
.craft-swiper.swiper {
  height: 100%;
  overflow: visible !important;
}

.craft-swiper .swiper-wrapper {
  height: 100%;
}

/* 每張牌：第一張佔寬 60%，其餘依序疊右 */
.craft-swiper .swiper-slide {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 牌 - 上方圖片區（flex-grow 撐滿剩餘高度） */
.craft-slide__image {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.craft-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 牌 - 下方標題文字（靠左，小字） */
.craft-slide__label {
  flex-shrink: 0;
  padding: var(--spacing-3) 0 0;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-wide);
  text-align: left;
}

/* 右側白色漸層遮罩：製造視窗邊緣淡出效果 */
.craft-section__fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 22%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 10;
}

/* 導覽箭頭 */
.craft-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.craft-nav-btn svg {
  width: 22px;
  height: 22px;
}

.craft-nav-btn--prev {
  left: var(--spacing-4);
}

.craft-nav-btn--next {
  right: var(--spacing-4);
}

.craft-nav-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.craft-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}


/* ===================================================
   第十一屏 OOT 理念（Office Of Tomorrow）
   =================================================== */

/* 整體區塊 */
.oot-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 背景圖片 */
.oot-section__bg {
  position: absolute;
  inset: 0;
  background-color: #aecfe8;
  background-image: url('../images/資產 2.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}



/* 內容容器 */
.oot-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--spacing-12) var(--spacing-8);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}

/* ── 上半：三顆圓形 ── */
.oot-section__circles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-10);
  flex-wrap: wrap;
}

.oot-section__circle {
  width: 18rem;
  height: 18rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  /* border: 2px solid rgba(255, 255, 255, 0.45); */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  text-align: center;
  padding: var(--spacing-4)
}

.oot-section__circle-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-tight);
  letter-spacing: 0.08em;
}

.oot-section__circle-sub {
  font-family: var(--font-english);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── 下半：標語 + 說明 ── */
.oot-section__bottom {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-16);
}

/* 左：大字 OFFICE / OF / TOMORROW */
.oot-section__tagline {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.oot-section__tagline-word {
  font-family: var(--font-english), "Roboto", Arial, sans-serif;
  color: var(--color-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* OFFICE 一行最大，視覺統帥 */
.oot-section__tagline-word--office {
  font-size: clamp(2.5rem, 6vw, 2rem);
}

/* OF 最小，拉開節奏 */
.oot-section__tagline-word:nth-child(2) {
  font-size: clamp(2.5rem, 6vw, 2rem);
}

/* TOMORROW 同 OFFICE */
.oot-section__tagline-word:last-child {
  font-size: clamp(2.5rem, 6vw, 2rem);
}

.oot-section__tagline-word strong {
  font-size: 1.2em;
  font-weight: var(--font-weight-bold);
  line-height: 0.85;
  display: inline-block;
  vertical-align: baseline;
}

/* 右：介紹文字 */
.oot-section__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  align-items: flex-start;
}

.oot-section__info-title {
  font-family: var(--font-english), "Roboto", Arial, sans-serif;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-2);
  text-align: left;
}

.oot-section__info-body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: rgba(255, 255, 255, 0.90);
  line-height: var(--line-height-relaxed);
  text-align: justify;
}


/* ===================================================
   第十二屏 建築標章（Badge Section）
   =================================================== */

.badge-section {
  position: relative;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

/* 背景（暫用淺藍色，日後替換圖片） */
.badge-section__bg {
  position: absolute;
  inset: 0;
  background-color: #aecfe8;
  background-image: url('../images/建築標章BG2.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}



/* 內容容器：電腦版靠右對齊 */
.badge-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 0 0 auto;
  padding: var(--spacing-12) var(--spacing-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-6);
}

/* 大標題 */
.badge-section__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-tight);
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: var(--spacing-4);
}

/* 小標題 */
.badge-section__subtitle {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0.9;
}

/* 建築標章圖片區 */
.badge-section__img-wrap {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: var(--spacing-4) 0;
}

.badge-section__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* GRESB 獎項區域 */
.badge-section__awards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-12);
  margin-top: var(--spacing-4);
}

/* 獎項項目 */
.badge-section__award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-3);
}

.badge-section__award-img {
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.badge-section__award-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-align: center;
}


/* ===================================================
   第十三屏 登記表單（Registration Section）
   =================================================== */

/* section：垂直 flex，footer 貼底 */
.reg-section {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem 2rem;
}

/* 上半：左右並排 */
.reg-section__upper {
  flex: 1;
  display: flex;
  min-height: 0;
}

/* ── 左欄 ── */
.reg-section__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-0) var(--spacing-12);
  overflow-y: auto;
  justify-content: space-between;
}

/* 表單標題 */
.reg-section__form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-16);
  flex-shrink: 0;
}

/* 二欄格線 */
.reg-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--spacing-8);
  row-gap: var(--spacing-3);
  margin-bottom: var(--spacing-3);
}

/* 欄位：label 與 input 同行 + 底線橫跨全寬 */
.reg-form__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-400);
  padding-bottom: var(--spacing-3);
  gap: var(--spacing-3);
}

.reg-form__field--full {
  grid-column: 1 / -1;
}

.reg-form__label {
  flex-shrink: 0;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  white-space: nowrap;
  pointer-events: none;
}

/* 底線輸入框：透明，無任何外框 */
.reg-form__input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  color: var(--color-text-dark);
  padding: var(--spacing-1) 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.reg-form__input:focus,
.reg-form__input:active {
  outline: none;
  box-shadow: none;
  border: none;
}

/* Select 自訂向下箭頭 */
select.reg-form__input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: var(--spacing-5);
}

/* 動作列：勾選靠左，按鈕靠右 */
.reg-form__action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  margin-top: var(--spacing-3);
}

.reg-form__check-label {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  cursor: pointer;
}

.reg-form__check {
  flex-shrink: 0;
  margin-top: 3px;
  width: 30px;
  height: 30px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.reg-form__check-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-gray);
  line-height: var(--line-height-normal);
}

.reg-form__check-link {
  color: var(--color-secondary);
  text-decoration: underline;
}

.reg-form__check-link:hover {
  color: var(--color-secondary-light);
}

/* 按鈕：深藍填滿＋白字 */
.reg-form__submit {
  flex-shrink: 0;
  padding: var(--spacing-2) var(--spacing-6);
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.reg-form__submit:hover {
  background: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
}

/* LOGO 佔位列 */
.reg-section__logos {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
  flex-shrink: 0;
  justify-content: center;
  margin-bottom: var(--spacing-6)
}

.reg-section__logo-placeholder {
  width: 200px;
}

/* ── 右欄 ── */
.reg-section__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Google Map 佔位：灰底 */
.reg-section__map {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.reg-section__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 聯絡資訊列 */
.reg-section__contact-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  background: var(--color-white);
}

/* 電話：大字深藍 */
.reg-section__phone {
  font-family: var(--font-english), "Roboto", Arial, sans-serif;
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-left: 10px;
}

.reg-section__phone:hover {
  color: var(--color-secondary-light);
}

/* SNS 按鈕群 */
.reg-section__sns-btns {
  display: flex;
  gap: var(--spacing-3);
}

.reg-section__sns-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-1);
  text-decoration: none;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.reg-section__sns-btn:hover {
  color: var(--color-secondary);
}

/* 圖示佔位框 */
.reg-section__sns-icon {
  display: block;
  width: 60px;
  height: 60px;
}

.reg-section__sns-label {
  font-family: var(--font-english), "Roboto", Arial, sans-serif;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  color: var(--color-secondary);
}

/* ── Footer 資訊列 ── */
.reg-section__footer {
  flex-shrink: 0;
  padding: var(--spacing-3) var(--spacing-8);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

.reg-section__footer-line {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  color: var(--color-secondary);
  line-height: var(--line-height-normal);
  text-align: center;
  margin-bottom: var(--spacing-1) ;
}
.reg-section__footer-line br{
  display: none;
}
.reg-section__contact-label{
  font-size: var(--font-size-base);
  color: var(--color-white);
  background-color: var(--color-secondary);
  padding: 8px 0px 6px;
  text-align: center;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reg-section__contact-phone-wrap {
  display: flex;
  align-items: center;
}

/* ===== 隱私權政策彈出視窗 ===== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.privacy-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  width: min(760px, 92vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.privacy-modal__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin: 0;
}

.privacy-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.privacy-modal__close:hover {
  color: var(--color-secondary);
}

.privacy-modal__body {
  overflow-y: auto;
  padding: 28px 32px 36px;
  font-family: var(--font-primary);
  color: #333;
  line-height: 1.8;
}

.privacy-modal__updated {
  font-size: var(--font-size-sm);
  color: #888;
  margin-bottom: 24px;
}

.privacy-modal__body h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  margin: 24px 0 8px;
}

.privacy-modal__body p {
  margin: 0 0 12px;
  font-size: var(--font-size-base);
}

.privacy-modal__body ul {
  margin: 0 0 12px 20px;
  padding: 0;
}

.privacy-modal__body ul li {
  font-size: var(--font-size-base);
  margin-bottom: 4px;
  list-style: disc;
}

.privacy-modal__body a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ===== 成功彈窗 ===== */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.success-modal-overlay--visible {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.success-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px 36px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.success-modal-overlay--visible .success-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* 打勾動畫 */
.success-modal__icon {
  margin-bottom: 20px;
}

.success-modal__circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}

.success-modal-overlay--visible .success-modal__circle {
  animation: successCircle 0.6s 0.2s ease-out forwards;
}

.success-modal__check {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}

.success-modal-overlay--visible .success-modal__check {
  animation: successCheck 0.35s 0.65s ease-out forwards;
}

@keyframes successCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes successCheck {
  to { stroke-dashoffset: 0; }
}

.success-modal__title {
  font-family: var(--font-heading, 'Noto Serif TC', serif);
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 12px;
  letter-spacing: 2px;
}

.success-modal__desc {
  font-size: 15px;
  color: #666;
  margin: 0 0 28px;
  line-height: 1.6;
}

.success-modal__btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
  color: #1a1a2e;
  border: none;
  padding: 14px 56px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.success-modal__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.success-modal__btn:active {
  transform: translateY(0);
}
