@charset "utf-8";
/* ==========================================
   CONTACT PAGE STYLES
========================================== */
/* Contact Page */
.contact-page {
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 75%,
    #0e0264 95%,
    #13038b 100%
  );
  min-height: 100vh;
  padding-bottom: 40px;
}
/* ==========================================
   麵包屑導航
========================================== */
.breadcrumb-section {
  display: flex;
  width: 70%;
  margin: 0 auto;
  padding-top: 4.5rem;
}
.breadcrumb-section nav {
  max-width: 100%;
}

.breadcrumb {
  font-family: "MiSans-Regular", sans-serif;
  font-size: 14px;
  color: #828282;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.breadcrumb a {
  color: #fff;
  opacity: 0.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
  opacity: 0.7;
}

.breadcrumb .separator {
  color: #fff;
  opacity: 0.4;
}

.breadcrumb .current {
  color: #fff;
  opacity: 0.4;
}

/* ==========================================
   Contact Form Section
========================================== */
.contact-form-section .container {
  width: 70%;
  margin: 0 auto;
  padding-top: 0.625rem;
}

/* Page Title */
.page-title {
  font-family: "Azonix-1VB0", sans-serif;
  font-size: clamp(1.5rem, 0.4258rem + 4.6452vw, 6rem);
  font-weight: normal;
  letter-spacing: 1px;
  color: #2206fb;
  text-align: left;
}

/* ==========================================
   表單樣式
========================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 0;
}

/* 表單列 - 3欄式 */
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 18px 0;
}
/* 表單列 - 全寬*/
.form-row-full {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: end;
}

.form-row-full .form-group {
  padding-bottom: 0;
}

/* 表單群組 */
.form-group {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.form-group label {
  font-family: "MiSans-Regular", sans-serif;
  font-size: clamp(1.125rem, 1.0952rem + 0.129vw, 1.25rem);
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* 輸入框通用樣式 (只有底線) */
.form-group input {
  font-family: "MiSans-Regular", sans-serif;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
  outline: none;
  padding-bottom: 8px;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
}

.form-group input:focus {
  border-bottom-color: #fff;
}

/* Textarea 樣式 (四邊框線) */
.form-group textarea {
  font-family: "MiSans-Regular", sans-serif;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
  outline: none;
  padding: 1rem;
  resize: vertical;
  min-height: 120px;
}

.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.form-group textarea:focus {
  border-color: #fff;
}

/* ==========================================
form-footer 隱私政策
========================================== */
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.privacy-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2206fb;
  flex-shrink: 0;
}

.privacy-checkbox label {
  font-family: "MiSans-Regular", sans-serif;
  font-size: clamp(1.125rem, 1.0952rem + 0.129vw, 1.25rem);
  color: #fff;
  cursor: pointer;
  line-height: 1.5;
}

.privacy-link {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.privacy-link:hover {
  color: #c1dd18;
  opacity: 0.8;
}

/* ==========================================
   發送按鈕
========================================== */
.submit-btn {
  font-family: "MiSans-Medium", sans-serif;
  background: #2206fb;
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  font-size: 16px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
}

.submit-btn:hover {
  background: #fff;
  color: #2206fb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 6, 251, 0.3);
}

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

@media screen and (max-width: 1440px) {
  .breadcrumb-section {
    width: 90%;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .contact-form-section .container {
    width: 90%;
  }
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }

  .form-row-full {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-group {
  }
  .form-group input {
    margin-bottom: 10px;
  }
}

/* 平板 (990px 以下) */
@media screen and (max-width: 990px) {
  .contact-form {
    padding-top: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .form-group {
  }

  .form-group input {
    margin-bottom: 20px;
  }
  .form-row-full {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-btn {
    width: 227px;
    margin: 0 auto;
    padding: 1rem;
  }

  .privacy-checkbox {
    justify-content: center;
  }
}

/* 平板 (768px 以下) */
@media screen and (max-width: 768px) {
  .page-title {
  }

  .contact-form {
    padding-top: 2rem;
  }

  .contact-form-section {
  }

  .breadcrumb-section {
  }
}

/* 手機 (576px 以下) */
@media screen and (max-width: 576px) {
  .contact-form-section .container {
    width: 90%;
  }

  .page-title {
    text-align: left;
  }

  .breadcrumb {
    justify-content: center;
    font-size: 12px;
  }

  .form-row {
    gap: 1rem;
  }

  .form-group {
    padding-bottom: 0;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .form-group input {
    padding: 0.6rem 0;
  }

  .privacy-checkbox label {
  }

  .submit-btn {
    font-size: 14px;
  }
}
