* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background: #05070e;
  background-image:
    radial-gradient(circle at 65% 38%, rgba(70, 40, 10, 0.32), rgba(3, 5, 12, 0) 42%),
    radial-gradient(circle at 30% 20%, rgba(8, 20, 48, 0.4), rgba(3, 5, 12, 0) 45%),
    linear-gradient(90deg, #03050c 0%, #081022 30%, #0b1323 40%, #1b120b 52%, #2f1c0a 58%, #0a0c15 78%, #03050c 100%);
  color: #f5f5f5;
  min-height: 1080px;
}

.page-content {
  padding: 120px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 720px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  letter-spacing: 1px;
}

.hero p {
  color: #cfcfcf;
  line-height: 1.6;
}

.contact-section {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 16px;
  width: 100%;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head .eyebrow {
  display: inline-block;
  padding: 0px 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bebebe;
}

.section-head h2 {
  font-size: 32px;
  letter-spacing: 0.5px;
}

.section-head .lede {
  margin: 0;
  color: #c4c4c4;
}

.contact-grid {
  display: grid;
  gap: 20px;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}
/* 
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  width: 100%;
} */

.info-card {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0px 70px;
}

.info-card .info-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: none;
}

.info-card .label {
  display: none;
}

.info-card .value {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #f2f2f2;
  line-height: 1.5;
  font-size: 14px;
}

.info-card .value a {
  color: #fff;
  text-decoration: none;
}

.info-card .value a:hover {
  color: orange;
  text-decoration: underline;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #dcdcdc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255, 124, 1, 0.25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(120deg, #ffa754, #ff7c48);
  color: #0b0b0b;
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(250, 191, 83, 0.493);
  filter: brightness(1.05);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
