@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.modal {
  /* Hover 效果（黑底白 X）──可選 */
}
.modal .modal-header .btn-close {
  width: 32px; /* 加大按鈕 */
  height: 32px;
  opacity: 1; /* 不要透明 */
  background-color: #fff;
  border-radius: 50%; /* 圓形按鈕 */
  border: 2px solid #000; /* 黑框 */
  position: relative;
}
@media (max-width: 768px) {
  .modal .modal-header .btn-close {
    width: 24px;
    height: 24px;
  }
}
.modal .modal-header .btn-close::before,
.modal .modal-header .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px; /* X 的長度 */
  height: 2px; /* X 的粗細 */
  background: #000; /* 黑色 X */
}
.modal .modal-header .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-header .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-header .btn-close:hover {
  background-color: #000;
}
.modal .modal-header .btn-close:hover::before,
.modal .modal-header .btn-close:hover::after {
  background: #fff;
}
.modal .modal-content {
  background: #1c2e52;
  border: 5px solid white;
  color: white;
}
.modal .modal-header {
  border-bottom: none;
  justify-content: center;
}
.modal h5 {
  font-size: 2rem;
  text-align: center;
  color: #d9a441;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .modal h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.modal .info {
  background: rgba(0, 0, 0, 0.486);
  padding: 2rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .modal .info {
    padding: 1rem;
  }
}
.modal .info h6 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.modal .info ul {
  list-style: none;
  padding: 0;
}
.modal .info ul li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid gray;
  padding-bottom: 0.5rem;
}
.modal .cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #d9a441;
  border-radius: 2rem;
}

.cta-link {
  display: flex;
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 100;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cta-link {
    gap: 0.7rem;
    bottom: 1rem;
    right: 0.7rem;
  }
}
.cta-link a {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background: #1c2e52;
  background: #d9a441;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
@media (max-width: 768px) {
  .cta-link a {
    width: 50px;
    height: 50px;
  }
}
.cta-link a i {
  color: #d9a441;
  color: #1c2e52;
  font-size: 2.3rem;
}
.cta-link a svg {
  width: 40px;
  height: 40px;
  fill: #d9a441;
  fill: #1c2e52;
}

h2 {
  margin-bottom: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 5px solid #d9a441;
  color: #1c2e52;
  display: inline-block;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #1c2e52;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  background: #1c2e52;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 8px rgba(0, 0, 0, 0.25);
  transition: text-shadow 0.3s ease;
}
.navbar .navbar-brand:hover {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45), 0 0 12px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: #f8f8f8;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #1c2e52;
}

#hero {
  margin-top: 86px;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 64px;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 0rem;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  color: #1c2e52;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  color: #666666;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #d9a441;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
  color: #d9a441;
  border: 1px solid #d9a441;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: #d9a441;
  color: white;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

#features {
  background: #1c2e52;
  color: white;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  #features {
    padding: 2rem;
  }
}
#features .feature-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
#features .feature-card i {
  font-size: 3.5rem;
  color: #d9a441;
}

#about {
  margin-top: 5rem;
  position: relative;
}
#about .bg {
  width: 60%;
  background: #f3f4f6;
  height: 100%;
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: -1;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  #about .bg {
    width: 100%;
    right: 0;
  }
}

#services .service-card {
  background: #f3f4f6;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}
#services .service-card .svg-box {
  text-align: center;
}
#services .service-card .svg-box svg {
  width: 50%;
}
#services .service-card h3 {
  text-align: center;
  margin: 2rem 0;
}

#price {
  background: #f8f8f8;
}
#price .price-highlight {
  background: linear-gradient(135deg, #1c2e52 0%, #16233f 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 40px 0px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  #price .price-highlight {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
#price .price-highlight .price-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  #price .price-highlight .price-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
#price .price-highlight .price-content i {
  font-size: 4rem;
  color: #d9a441;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #price .price-highlight .price-content i {
    font-size: 3rem;
  }
}
#price .price-highlight .price-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0;
  color: white;
}
@media (max-width: 768px) {
  #price .price-highlight .price-content p {
    font-size: 1.1rem;
  }
}
#price .price-highlight .price-content p strong {
  color: #d9a441;
  font-weight: 700;
  font-size: 1.3em;
}
#price .credit-info-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 40px 0px;
  overflow: hidden;
}
#price .credit-info-card .card-header {
  background: #1c2e52;
  padding: 2rem;
  color: white;
}
@media (max-width: 768px) {
  #price .credit-info-card .card-header {
    padding: 1.5rem;
  }
}
#price .credit-info-card .card-header h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  #price .credit-info-card .card-header h3 {
    font-size: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
#price .credit-info-card .card-header h3 i {
  color: #d9a441;
  font-size: 2rem;
}
#price .credit-info-card .card-body {
  padding: 2.5rem;
}
@media (max-width: 768px) {
  #price .credit-info-card .card-body {
    padding: 1.5rem;
  }
}
#price .credit-info-card .card-body .info-section {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  #price .credit-info-card .card-body .info-section {
    margin-bottom: 2rem;
  }
}
#price .credit-info-card .card-body .info-section:last-child {
  margin-bottom: 0;
}
#price .credit-info-card .card-body .info-section h4 {
  color: #1c2e52;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d9a441;
  display: inline-block;
}
@media (max-width: 768px) {
  #price .credit-info-card .card-body .info-section h4 {
    font-size: 1.1rem;
  }
}
#price .credit-info-card .card-body .info-section p {
  color: #222222;
  line-height: 1.8;
  margin-bottom: 1rem;
}
#price .credit-info-card .card-body .info-section p:last-child {
  margin-bottom: 0;
}
#price .credit-info-card .card-body .info-section p strong {
  color: #1c2e52;
  font-weight: 600;
}

#process .process-card {
  position: relative;
  margin-bottom: 2rem;
}
#process .process-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
}
@media (max-width: 768px) {
  #process .process-card img {
    height: 200px;
  }
}
#process .process-card .triangle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%; /* 直角邊長，自己決定 */
  height: 100%;
  background: #1c2e52;
  color: white;
  /* 剪出右下直角三角形 */
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 0% 0%);
          clip-path: polygon(0% 100%, 100% 100%, 0% 0%);
  display: flex;
  align-items: end;
  padding: 2rem;
}
@media (max-width: 768px) {
  #process .process-card .triangle {
    position: relative;
    -webkit-clip-path: none;
            clip-path: none;
    width: 100%;
  }
}
#process .process-card .triangle .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#process .process-card .triangle .content .step {
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  color: #d9a441;
}
#process .process-card .triangle .content .text h3 {
  margin-bottom: 1rem;
  color: #d9a441;
  font-weight: 600;
}
#process .process-card .triangle .content .text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  gap: 0.8rem;
  color: #c5c5c5;
}
@media (max-width: 768px) {
  #process .process-card .triangle .content .text ul {
    flex-direction: column;
  }
}
#process .process-card .triangle .content .text p {
  color: #f8f8f8;
}

#law {
  background: rgb(222, 222, 222);
}
#law h3 a {
  font-size: 2.5rem;
  font-weight: 800;
  background: #1c2e52;
  padding: 1rem 2rem;
  color: white;
  border-radius: 1rem;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #1c2e52;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

#contact {
  background: #f2f2f2;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #1c2e52;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #1c2e52;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #d9a441;
}

#faq {
  background: #f8f8f8;
}
#faq .faq-sub {
  margin-top: 0.75rem;
  color: #666666;
}
@media (max-width: 768px) {
  #faq .faq-sub {
    font-size: 0.95rem;
  }
}
#faq .faq-accordion {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  #faq .faq-accordion {
    margin-top: 1.5rem;
  }
}
#faq .faq-accordion .accordion-item {
  border: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 10px 30px 0px;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-item {
    margin-bottom: 0.9rem;
    border-radius: 1rem;
  }
}
#faq .faq-accordion .accordion-button {
  background: white;
  color: #1c2e52;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-button {
    padding: 1rem 1rem;
  }
}
#faq .faq-accordion .accordion-button .q-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.15);
  color: #d9a441;
  font-weight: 800;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-button .q-tag {
    padding: 0.2rem 0.6rem;
    flex-shrink: 0;
  }
}
#faq .faq-accordion .accordion-button:not(.collapsed) {
  background: #1c2e52;
  color: white;
}
#faq .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#faq .faq-accordion .accordion-button::after {
  filter: invert(1);
}
#faq .faq-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #222222;
  line-height: 1.9;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-body {
    padding: 1rem 1rem;
  }
}
#faq .faq-accordion .accordion-body .faq-list {
  margin: 0.5rem 0 0.75rem 1.2rem;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-body .faq-list {
    margin-left: 1.1rem;
  }
}
#faq .faq-accordion .accordion-body .faq-list li {
  margin-bottom: 0.35rem;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-body .faq-list li {
    margin-bottom: 0.25rem;
  }
}
#faq .faq-accordion .accordion-body .note {
  margin: 0.5rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #666666;
}
@media (max-width: 768px) {
  #faq .faq-accordion .accordion-body .note {
    padding-top: 0.6rem;
  }
}
#faq .faq-cta {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  #faq .faq-cta {
    margin-top: 1.5rem;
  }
}
#faq .faq-cta .faq-cta-inner {
  background: linear-gradient(135deg, #1c2e52 0%, #14213b 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 18px 50px 0px;
}
@media (max-width: 768px) {
  #faq .faq-cta .faq-cta-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    border-radius: 1.2rem;
  }
}
#faq .faq-cta .faq-cta-inner .txt h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 800;
  color: white;
}
@media (max-width: 768px) {
  #faq .faq-cta .faq-cta-inner .txt h3 {
    text-align: center;
  }
}
#faq .faq-cta .faq-cta-inner .txt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  #faq .faq-cta .faq-cta-inner .txt p {
    text-align: center;
  }
}
#faq .faq-cta .faq-cta-inner .btns {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  #faq .faq-cta .faq-cta-inner .btns {
    flex-direction: column;
  }
}
#faq .faq-cta .faq-cta-inner .btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.35s;
}
@media (max-width: 768px) {
  #faq .faq-cta .faq-cta-inner .btns a {
    width: 100%;
  }
}
#faq .faq-cta .faq-cta-inner .btns a i {
  font-size: 1.2rem;
}
#faq .faq-cta .faq-cta-inner .btns .btn-line {
  background: #d9a441;
  color: white;
}
#faq .faq-cta .faq-cta-inner .btns .btn-line:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}
#faq .faq-cta .faq-cta-inner .btns .btn-tel {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}
#faq .faq-cta .faq-cta-inner .btns .btn-tel:hover {
  background: rgba(255, 255, 255, 0.08);
}/*# sourceMappingURL=all.css.map */