@charset "UTF-8";
/* === 基礎樣式 === */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  background-color: #fff;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .container {
    width: 100%;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.static-image-03 {
  margin-bottom: -12%;
  z-index: 2;
  position: relative;
}

.swiper {
  width: 100%;
  height: auto;
  padding-bottom: 30px;
  --swiper-navigation-size: 24px;
  --swiper-navigation-color: #fff;
  --swiper-navigation-sides-offset: 20px;
  --swiper-pagination-bottom: 20px;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity:0.4;
}
.swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height: auto;
}
.swiper .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 125/121;
  object-fit: cover;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  display: none;
}

/* === 表單樣式更新 === */
.form-section {
  width: 80%;
  margin: 3rem auto 0;
}
@media (max-width: 650px) {
  .form-section {
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .form-section .form-section {
    width: 90%;
  }
}
.form-section .form-group {
  margin-bottom: 2rem;
}
.form-section .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}
.form-section .form-label .required-mark {
  color: red;
  margin-left: 3px;
}
.form-section .form-input {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  outline: none;
  border-radius: 4px;
}
.form-section .form-input:focus {
  border-color: #555;
  background: #fdfdfd;
}
.form-section textarea.form-input {
  height: 150px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.form-section .checkbox-options {
  display: flex;
  flex-direction: row;
  gap: 5px 20px;
  flex-wrap: wrap;
}
.form-section .checkbox-options .checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  min-width: 105px;
}
.form-section .checkbox-options .checkbox-item input {
  width: 15px;
  height: 15px;
  margin: 0;
  margin-right: 10px;
  cursor: pointer;
}
.form-section .policy-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  font-size: 15px;
}
@media (max-width: 480px) {
  .form-section .policy-group {
    font-size: 14px;
  }
}
.form-section .policy-group input {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  cursor: pointer;
}
.form-section .policy-group .policy-link {
  color: #a07264;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}
.form-section .submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #a07264;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 4px;
}
.form-section .submit-btn:hover {
  background-color: #333;
}
.form-section .submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* 懸浮按鈕 */
.floating-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 999;
}
@media (max-width: 650px) {
  .floating-buttons {
    right: 0px;
    bottom: 0;
    top: unset;
    transform: unset;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .floating-buttons span {
    display: none;
  }
}
.floating-buttons .float-btn {
  border-radius: 1em 0 0 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 15px 10px 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  transform: translateX(85px);
}
@media (max-width: 650px) {
  .floating-buttons .float-btn {
    border-radius: 0;
    transform: unset;
    padding-inline: 0;
  }
}
.floating-buttons .float-btn:hover {
  transform: translateX(0px);
}
.floating-buttons .float-btn img {
  width: 20px;
  padding-inline: 10px;
}
@media (max-width: 650px) {
  .floating-buttons .float-btn img {
    padding-inline: 0;
  }
}
.floating-buttons .btn-fb {
  background-color: #1877F2;
}
.floating-buttons .btn-fb img {
  position: relative;
  left: 5px;
  padding-right: 13px;
}
@media (max-width: 650px) {
  .floating-buttons .btn-fb img {
    left: 0;
    padding-right: 0;
  }
}
.floating-buttons .btn-tel {
  background-color: #28a745;
}
.floating-buttons .btn-map {
  background-color: #db4437;
}

.scroll-top {
  position: fixed;
  right: 13px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top .btn-top {
  width: 16px;
}
@media (max-width: 768px) {
  .scroll-top .btn-top {
    width: 14px;
  }
}

/* 彈窗樣式 */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}
.modal-overlay .modal-content {
  background: #fff;
  padding: 30px;
  width: 80%;
  max-width: 800px;
  max-height: 75vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}
.modal-overlay h1 {
  margin-top: 0;
  font-size: clamp(1.25rem, 1.0361rem + 0.4462vw, 1.75rem);
  text-align: center;
}
.modal-overlay h2 {
  font-size: clamp(1.125rem, 1.0181rem + 0.2231vw, 1.375rem);
}
.modal-overlay p {
  font-size: clamp(0.9375rem, 0.9108rem + 0.0558vw, 1rem);
}
.modal-overlay .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}
.modal-overlay .modal-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #a07264;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  transition: 0.3s ease;
}
.modal-overlay .modal-btn:hover {
  background: #333;
  transition: 0.3s ease;
}