.service-ban-text .text .tit-en{
  font-size: 0.48rem;
}
.service-ban-text .text .tit-cn{
  font-size: 0.36rem;
}
.service-ban-text .text .desc{
  font-size: 0.18rem;
}
.service-ban-text .text .tit-btns{
  display: flex;
  align-items: center;
  gap:0.2rem;
  margin-top: 0.3rem;
}
.service-ban-text .text .tit-tags{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.06rem;;
  margin-top: 0.15rem;
}
.service-ban-text .text .tit-tag{
  padding: 0.06rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.04rem;
  border-radius: 0.02rem;
  font-size: 0.12rem;
  color: #61a2d5;
  background: #E4EEF6;
}
.service-ban-text .text .tit-tag img {
  width: 0.14rem;
  height: 0.14rem;
}
.service-ban-text .text .tit-btns .booking-form__btn{
  border-radius: 0.04rem;
}
/* 主容器 */
.services-box--new {
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-container {
  position: relative;
  padding: 0.8rem 0 1rem;
  background: #f8f8f8;
}

.composer-up .text {
  max-height: 25rem;
  overflow: auto;
}

.service-wrap {

}
/* 左侧导航 */
.service-nav {
  position: absolute;
  top: 1.2rem;
  transform: translateX(-100%);
  padding: 0.4rem 0.3rem;
  z-index: 3000;
}

.service-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.service-nav__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.1rem;
  left: -0.2rem;
  width: 0.01rem;
  background: #498fc0;
}

.service-nav__item {
  margin: 0 0 0.2rem;
  position: relative;
  color: #666;
  z-index: 1;
}
.service-nav__item--active {
  color: #498fc0;
}
.service-nav__item::before {
  content: "";
  position: absolute;
  left: -0.28rem;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: #fff;
  border: 0.03rem solid #498fc0;
}
.service-nav__item--active::before {
  background: #498fc0;
}

.service-nav__link {
  display: block;
  font-size: 0.2rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  color: inherit;
  scroll-behavior: smooth;
}

/* 右侧内容区域 */
.service-content {
  flex: 1;
  background: #ffffff;
  border-radius: 0.08rem;
  padding: 0.5rem;
  box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.08);
}
.service-part {
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 0.8rem 0;
}
.service-part--grey {
  background-color: #f8f8f8;
}
.service-part__title {
  font-size: 0.18rem;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.6rem;
  text-align: center;
}

.service-part__title span {
  display: block;
}

.service-part__title img {
  width: 0.54rem;
  height: 0.17rem;
}

.service-part--recording {
  margin-top: -0.64rem;
  background-image: url('../uploadfiles/services-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.service-part--recording .services-title {
  margin-top: -0.64rem;
  scroll-behavior: smooth;
}
.service-part--recording .services-title .auto-inner2::after {
  display: none;
}
.current-box.service-part--head .auto-inner2::after {
  background: #F8F8F8;
}
.current-box.service-part--head .ul li a::after {
  background-color: #f8f8f8;
}
.current-box.service-part--head .auto-inner2::before {
  background-color: #f8f8f8;
}

/* 图片展示区 */
.service-gallery {
  position: relative;
}

.service-gallery__main {
  margin-bottom: 0.2rem;
  position: relative;
}

.service-gallery__main-img {
  width: 100%;
  height: 7.2rem;
  overflow: hidden;
}

.service-gallery__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-gallery__toggle {
  position: absolute;
  bottom: 0;
  left: -0.88rem;
  right: -0.88rem;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}
.service-gallery__toggle button {
  width: 0.48rem;
  height: 0.48rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.4;
}
.service-gallery__toggle button:hover {
  opacity: 1;
}

.service-gallery__thumbs {
  white-space: nowrap;
  padding-top: 0.3rem;
  margin-top: -0.3rem;
  overflow-x: auto;
}

.service-gallery__thumb {
  display: inline-block;
  vertical-align: top;
  width: 1.6rem;
  height: 0.9rem;
  overflow: hidden;
  cursor: pointer;
  border: 0.03rem solid transparent;
  transition: all 0.3s;
  opacity: 0.5;
}

.service-gallery__thumb:hover {
  border-color: #2c5aa0;
  transform: translateY(-0.3rem);
  opacity: 1;
}

.service-gallery__thumb--active {
  border-color: #2c5aa0;
  opacity: 1;
}

.service-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-part--intro {
}

/* 服务标题区域 */
.service-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.6rem;
  scroll-behavior: smooth;
}

.service-section__number {
  position: relative;
  font-size: 0.72rem;
  font-weight: bold;
  color: #d1e3f3;
  line-height: 1;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-section__number::after {
  position: absolute;
  z-index: 1;
  width: 2.1rem;
  height: 1.05rem;
  border-bottom: 0.01rem solid #61a2d5;
  content: "";
  background: #fff;
  transform: rotate(-45deg);
  bottom: 0.6rem;
  right: -0.8rem;
}
.service-section__number span {
  position: relative;
  z-index: 10;
  right: -0.72rem;
  bottom: 0.2rem;
}
.service-section__title-wrap {
  text-align: center;
}

.service-section__title-en {
  font-size: 0.56rem;
  font-weight: bold;
  color: #eee;
  line-height: 1;
}

.service-section__title-cn {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1;
  margin-bottom: 0.32rem;
}

/* 服务介绍 */
.service-intro {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.service-intro__image {
  width: 6.4rem;
  height: 4rem;
  overflow: hidden;
  flex-shrink: 0;
}

.service-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-intro__content {
  flex: 1;
}

.service-intro__title {
  font-size: 0.18rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.22rem;
  line-height: 1;
  display: inline-block;
}
.service-intro__title img {
  width: 0.54rem;
  height: 0.17rem;
  margin-left: 0.1rem;
}

.service-intro__text {
  font-size: 0.16rem;
  line-height: 2;
  color: #333;
  margin: 0;
}

/* 服务介绍 - 反向布局 */
.service-intro--reverse {
  flex-direction: row-reverse;
}

/* 服务优势 */
.service-features {
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.service-features__item {
  padding: 0.3rem;
  background: #fff;
  transition: all 0.3s;
}

.service-features__item:hover {
  box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.1);
  transform: translateY(-0.04rem);
}

.service-features__icon {
  width: 0.5rem;
  height: 0.5rem;
  margin-bottom: 0.2rem;
}
.service-features__item-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.16rem;
  gap: 0.1rem;
}
.service-features__item-title {
  font-size: 0.18rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  flex-shrink: 0;
}

.service-features__item-subtitle {
  font-weight: normal;
  font-size: 0.12rem;
  color: #61a2d5;
  line-height: 1.2;
}

.service-features__item-desc {
  font-size: 0.18rem;
  line-height: 1.5;
  color: #333;
}


.service-part__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  font-weight: bold;
  min-height: 1.35rem;
  color: #333;
  gap: 0.06rem;
  text-align: center;
  margin-bottom: 0.2rem;
  background-image: url('../images/service-part-title-bg@3x.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 3.5rem auto;
}
.service-part__subtitle img {
  width: 0.3rem;
  height: 0.3rem;
  flex-shrink: 0;
}
.service-part__subtitle-desc {
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* 合作乐团 */
.service-part--partners {
  background-image: url('../uploadfiles/service-partners-bg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media (min-width:1025px){
    .service-part--partners{ padding-bottom:3.5rem;}
}
@media (max-width:1024px){
    .service-part--partners{ padding-bottom:1.3rem;}
}
.service-part--types {
  background-image: url('../uploadfiles/service-partners-bg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.service-part--partners2 {
  background-image: url('../uploadfiles/service-partners-bg2.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.service-part--partners2 .service-features__item {
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(186, 199, 209, 0.3);
}
.service-features__more {
  color: #61a2d5;
  text-align: center;
  font-size: 0.14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  margin-top: 0.4rem;
}
.service-features__more a {
  display: block;
  color: #61a2d5;
}
.service-part--types .service-part__title {
  color: #fff;
  margin-bottom: 0.3rem;
}
.service-types__grid {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  justify-content: center;
}
.service-types__item {
  background: #fff;
  padding: 0.08rem 0.12rem;
  font-size: 0.16rem;
  color: #333;
}
.service-partners {
}

.service-partners__grid {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(2, 1fr);
}

.service-partners__item {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.service-partners__image {
  width: 100%;
  height: 4.2rem;
  overflow: hidden;
  flex-shrink: 0;
}

.service-partners__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-partners__content {
  flex: 1;
  padding: 0.2rem 0.3rem;
}

.service-partners__tags {
  display: flex;
  gap: 0.06rem;
  margin-bottom: 0.16rem;
  flex-wrap: wrap;
}

.service-partners__tag {
  padding: 0.07rem 0.16rem;
  background: #e4eef6;
  color: #61a2d5;
  font-size: 0.12rem;
  line-height: 1;
}

.service-partners__name {
  font-size: 0.18rem;
  font-weight: 600;
}

.service-partners__name-en {
  font-size: 0.12rem;
  margin: 0 0 0.12rem;
  color: #61a2d5;
}

.service-partners__desc {
  font-size: 0.16rem;
  line-height: 1.8;
}

/* 可选指挥 */
.service-conductors {
}

.service-conductors__swiper {
  position: relative;
}
.service-conductors__swiper .swiper-wrapper {
  align-items: stretch;
}
.service-conductors__swiper .swiper-slide {
  height: auto;
}

.service-conductors__item {
  background: #fff;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  border: 0.01rem solid #ECEEF4;
}

.service-conductors__item:hover {
  transform: translateY(-0.06rem);
}

.service-conductors__image {
  width: 100%;
  height: 2.7rem;
  overflow: hidden;
  background: #ECEEF4;
  padding: 0.15rem;
}

.service-conductors__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.15s ease-in-out;
}
.service-conductors__item:hover .service-conductors__image img {
  transform: scale(1.03) rotate(3deg);
}

.service-conductors__cont {
  padding: 0.2rem 0.3rem 0.3rem;
}
.service-conductors__name {
  font-size: 0.18rem;
  font-weight: 600;
  color: #333;
}

.service-conductors__name-en {
  font-size: 0.12rem;
  color: #888;
  margin: 0 0 0.1rem;
}

.service-conductors__title {
  font-size: 0.16rem;
  color: #61a2d5;
  margin: 0 0 0.08rem;
}
.service-conductors__desc {
  font-size: 0.16rem;
  color: #333;
  margin: 0 0 0.12rem;
}

.service-conductors__tags {
  display: flex;
  gap: 0.05rem;
  flex-wrap: wrap;
}

.service-conductors__tag {
  padding: 0.08rem;
  line-height: 1;
  background: #E4EEF6;
  font-size: 0.16rem;
  color: #61a2d5;
}

.conductors-prev,
.conductors-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.4rem;
  background: #2c5aa0;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}

.conductors-prev:hover,
.conductors-next:hover {
  background: #1e3d6f;
}

.conductors-prev::after,
.conductors-next::after {
  font-size: 0.16rem;
  color: #ffffff;
  font-weight: bold;
}

.conductors-prev {
  left: 0;
}

.conductors-next {
  right: 0;
}

.conductors-pagination {
  margin-top: 0.4rem;
  text-align: center;
  position: relative;
}

.conductors-pagination .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background: #D6D6D6;
  opacity: 1;
  margin: 0 0.075rem;
}

.conductors-pagination .swiper-pagination-bullet-active {
  background: #61a2d5;
}

.service-part--studios {
  background-color: #FAFBFD;
  background-image: url('../uploadfiles/service-studios-bg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/* 录音棚 */
.service-studios {
}

.service-studios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.service-studios__item {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s;
}

.service-studios__item:hover {
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.12);
  transform: translateY(-0.06rem);
}

.service-studios__image {
  width: 100%;
  height: 2rem;
  overflow: hidden;
}

.service-studios__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.service-studios__item:hover .service-studios__image img {
  transform: scale(1.1);
}

.service-studios__content {
  padding: 0.2rem 0.2rem 0.3rem;
}

.service-studios__name {
  font-size: 0.18rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.12rem;
}

.service-studios__location {
  font-size: 0.14rem;
  color: #61a2d5;
  margin: 0 0 0.12rem;
}

.service-studios__desc {
  font-size: 0.16rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}


/* 音乐顾问 */
.service-part--advisors {
  background-image: linear-gradient(0deg,#F6F7F8 0%, #fff 100%);
}
.service-advisors {
}

.service-advisors__grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.08rem;
}

.service-advisors__item {
  padding: 0.15rem;
  background: #fff;
  transition: all 0.3s;
  max-width: 1.3rem;
}
.service-advisors__grid > img {
  width: 0.18rem;
  height: 0.1rem;
}

.service-advisors__number {
  font-size: 0.18rem;
  font-weight: bold;
  color: #61a2d5;
  line-height: 1;
  font-family: Arial, sans-serif;
  transition: all 0.3s;
  margin-bottom: 0.14rem;
}

.service-advisors__name {
  font-size: 0.18rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  transition: all 0.3s;
}

.service-part--instrumentalists {
  background-color: #FAFBFD;
  background-image: url('../uploadfiles/service-instrumentalists-bg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.service-part--celtic {
  background-color: #FAFBFD;
  background-image: url('../uploadfiles/service-celtic-bg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}


/* 乐手模块（复用指挥样式） */
.service-musicians {

}

.service-musicians__swiper {
  position: relative;
}

.service-conductors__swiper .swiper-wrapper {
  align-items: stretch;
}
.service-conductors__swiper .swiper-slide {
  height: auto;
}

.service-musicians__item {
  background: #fff;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  border: 0.01rem solid #ECEEF4;
}
.service-musicians__item ~ .service-musicians__item{
  margin-top: 0.4rem;
}
.service-musicians__item:hover {
  transform: translateY(-0.06rem);
}

.service-musicians__item:hover .service-musicians__image img {
  transform: scale(1.03) rotate(3deg);
}

.service-musicians__image {
  width: 100%;
  height: 2rem;
  overflow: hidden;
  background: #ECEEF4;
  padding: 0.15rem;
}

.service-musicians__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.15s ease-in-out;
}

.service-musicians__cont {
  padding: 0.2rem 0.3rem 0.3rem;
}

.service-musicians__name {
  font-size: 0.18rem;
  font-weight: 600;
  color: #333;
}

.service-musicians__name-en {
  font-size: 0.12rem;
  color: #888;
  margin: 0 0 0.1rem;
}

.service-musicians__title {
  font-size: 0.16rem;
  color: #61a2d5;
  margin: 0 0 0.08rem;
}

.service-musicians__info {
  font-size: 0.16rem;
  color: #333;
  margin: 0 0 0.12rem;
}

.service-musicians__tags {
  display: flex;
  gap: 0.05rem;
  flex-wrap: wrap;
}

.service-musicians__tag {
  padding: 0.08rem;
  line-height: 1;
  background: #E4EEF6;
  font-size: 0.16rem;
  color: #61a2d5;
}

.musicians-pagination {
  margin-top: 0.4rem;
  text-align: center;
  position: relative;
}

.musicians-pagination .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background: #D6D6D6;
  opacity: 1;
  margin: 0 0.075rem;
}

.musicians-pagination .swiper-pagination-bullet-active {
  background: #61a2d5;
}
.service-part--lyrics {
}
.service-part--lyrics .service-part__title {
  margin-bottom: 0.3rem;
}
.service-part--lyrics .service-lyrics__box {
  border:0.01rem solid rgb(228, 238, 246);
  background-color: rgb(242, 245, 252);
  padding: 0.3rem 1.2rem;
  text-align: center;
  line-height: 1.7;
}
.service-part--lyrics .service-lyrics__box a {
  color: #61a2d5;
  font-weight: bold;
}
/*
.musicians-prev-1,
.musicians-next-1,
.musicians-prev-2,
.musicians-next-2,
.musicians-prev-3,
.musicians-next-3,
.musicians-prev-4,
.musicians-next-4,
.musicians-prev-5,
.musicians-next-5 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.4rem;
  background: #2c5aa0;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}

.musicians-prev-1:hover,
.musicians-next-1:hover,
.musicians-prev-2:hover,
.musicians-next-2:hover,
.musicians-prev-3:hover,
.musicians-next-3:hover,
.musicians-prev-4:hover,
.musicians-next-4:hover,
.musicians-prev-5:hover,
.musicians-next-5:hover {
  background: #1e3d6f;
}

.musicians-prev-1::after,
.musicians-next-1::after,
.musicians-prev-2::after,
.musicians-next-2::after,
.musicians-prev-3::after,
.musicians-next-3::after,
.musicians-prev-4::after,
.musicians-next-4::after,
.musicians-prev-5::after,
.musicians-next-5::after {
  font-size: 0.16rem;
  color: #ffffff;
  font-weight: bold;
}

.musicians-prev-1,
.musicians-prev-2,
.musicians-prev-3,
.musicians-prev-4,
.musicians-prev-5 {
  left: 0;
}

.musicians-next-1,
.musicians-next-2,
.musicians-next-3,
.musicians-next-4,
.musicians-next-5 {
  right: 0;
}

.musicians-pagination-1,
.musicians-pagination-2,
.musicians-pagination-3,
.musicians-pagination-4,
.musicians-pagination-5 {
  margin-top: 0.3rem;
  text-align: center;
  position: relative;
}

.musicians-pagination-1 .swiper-pagination-bullet,
.musicians-pagination-2 .swiper-pagination-bullet,
.musicians-pagination-3 .swiper-pagination-bullet,
.musicians-pagination-4 .swiper-pagination-bullet,
.musicians-pagination-5 .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background: #ddd;
  opacity: 1;
  margin: 0 0.05rem;
}

.musicians-pagination-1 .swiper-pagination-bullet-active,
.musicians-pagination-2 .swiper-pagination-bullet-active,
.musicians-pagination-3 .swiper-pagination-bullet-active,
.musicians-pagination-4 .swiper-pagination-bullet-active,
.musicians-pagination-5 .swiper-pagination-bullet-active {
  background: #2c5aa0;
} */

/* 服务内容底部 */
.service-bottom {
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  border-top: 0.02rem solid #e8e8e8;
}

.service-bottom__title {
  font-size: 0.24rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.08rem;
  text-align: center;
}

.service-bottom__subtitle {
  font-size: 0.16rem;
  color: #999;
  margin: 0 0 0.4rem;
  text-align: center;
  font-style: italic;
}

.service-bottom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  background: #0a1e3f;
  padding: 0.5rem 0.4rem;
  border-radius: 0.08rem;
}

.service-bottom__item {
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.08rem;
  transition: all 0.3s;
  text-align: center;
}

.service-bottom__item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.04rem);
}

.service-bottom__icon {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto 0.2rem;
}

.service-bottom__icon .icon-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.3;
}

.service-bottom__item-title {
  font-size: 0.18rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.08rem;
}

.service-bottom__item-subtitle {
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.15rem;
  font-style: italic;
}

.service-bottom__item-desc {
  font-size: 0.14rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* 响应式 */
@media (max-width: 1200px) {
  .service-container .auto-inner2 {
    gap: 0.4rem;
  }

  .service-nav {
    width: 2.4rem;
  }

  .service-content {
    padding: 0.4rem;
  }

  .service-gallery__thumb {
    width: calc((100% - 0.72rem) / 6);
    height: 0.8rem;
  }

  .service-features__grid {
    gap: 0.3rem 0.4rem;
  }

  .service-partners__item {
    gap: 0.3rem;
    padding: 0.35rem;
  }

  .service-partners__image {
    width: 3.4rem;
    height: 2.6rem;
  }

  .service-conductors__swiper {
    padding: 0 0.45rem;
  }

  .service-studios__grid {
  }

  .service-advisors__grid {
  }

  .service-musicians__swiper {
    padding: 0 0.45rem;
  }

  .service-bottom__grid {
    gap: 0.35rem;
    padding: 0.45rem 0.35rem;
  }
}

@media (max-width: 992px) {
  .service-container .auto-inner2 {
    flex-direction: column;
  }

  .service-nav {
    width: 100%;
  }

  .service-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
  }

  .service-nav__item {
    margin: 0;
    flex: 1;
    min-width: 1.5rem;
  }

  .service-gallery__main-img {
    height: 4rem;
  }

  .service-gallery__thumb {
    width: calc((100% - 0.6rem) / 5);
  }

  .service-intro {
    flex-direction: column;
    gap: 0.3rem;
  }

  .service-intro__image {
    width: 100%;
    height: 3.5rem;
  }

  .service-partners__item {
    flex-direction: column;
    padding: 0.3rem;
  }

  .service-partners__image {
    width: 100%;
    height: 3rem;
  }

  .service-conductors__swiper {
    padding: 0 0.4rem;
  }

  .service-advisors__grid {
  }

  .service-musicians {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }

  .service-musicians__swiper {
    padding: 0 0.4rem;
  }

  .service-bottom {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }

  .service-part--types {
    background-size: cover;
  }

  .service-bottom__grid {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.4rem 0.3rem;
  }

  .service-intro--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .service-container {
    padding: 0.5rem 0 0.6rem;
  }

  .service-content {
    padding: 0.3rem 0.2rem;
  }

  .service-gallery__main-img {
    height: 3rem;
  }

  .service-gallery__thumb {
    width: calc((100% - 0.4rem) / 4);
    height: 0.7rem;
  }

  .service-section {
    gap: 0.2rem;
  }

  .service-features__grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .service-partners {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-partners__item {
    padding: 0.25rem 0.2rem;
    gap: 0.25rem;
  }

  .service-partners__image {
    height: 2.5rem;
  }

  .service-partners__tags {
    gap: 0.08rem;
  }

  .service-partners__tag {
    font-size: 0.12rem;
    padding: 0.05rem 0.12rem;
  }

  .service-conductors {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-conductors__swiper {
    padding: 0;
  }

  .conductors-prev,
  .conductors-next {
    width: 0.35rem;
    height: 0.35rem;
  }

  .conductors-prev::after,
  .conductors-next::after {
    font-size: 0.14rem;
  }

  .service-studios {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-studios__grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .service-studios__image {
    height: 2.5rem;
  }

  .service-advisors {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-advisors__grid {
  }

  .service-advisors__item {
    padding: 0.2rem 0.25rem;
    max-width: none;
    width: 30%;
  }

  .service-advisors__number {
    font-size: 0.24rem;
  }

  .service-advisors__name {
    font-size: 0.15rem;
  }

  .service-musicians {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-musicians__title {
    font-size: 0.2rem;
  }

  .booking-section .service-section__number::after {
    background: linear-gradient(0deg, #99c5ea 0%, #9dc9ec 100%)
  }

  .service-musicians__swiper {
    padding: 0;
  }

  .musicians-prev-1,
  .musicians-next-1,
  .musicians-prev-2,
  .musicians-next-2,
  .musicians-prev-3,
  .musicians-next-3,
  .musicians-prev-4,
  .musicians-next-4,
  .musicians-prev-5,
  .musicians-next-5,
  .musicians-prev-6,
  .musicians-next-6 {
    width: 0.35rem;
    height: 0.35rem;
  }

  .musicians-prev-1::after,
  .musicians-next-1::after,
  .musicians-prev-2::after,
  .musicians-next-2::after,
  .musicians-prev-3::after,
  .musicians-next-3::after,
  .musicians-prev-4::after,
  .musicians-next-4::after,
  .musicians-prev-5::after,
  .musicians-next-5::after,
  .musicians-prev-6::after,
  .musicians-next-6::after {
    font-size: 0.14rem;
  }

  .service-bottom {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-bottom__title {
    font-size: 0.2rem;
  }

  .service-bottom__grid {
    padding: 0.35rem 0.25rem;
    gap: 0.25rem;
  }

  .service-bottom__item {
    padding: 0.25rem 0.2rem;
  }

  .service-advisors-box {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-advisors-box__title {
    font-size: 0.2rem;
  }

  .service-advisors-box__content {
    padding: 0.3rem 0.25rem;
    font-size: 0.14rem;
  }

  .booking-section {
    padding: 0.5rem 0;
  }

  .booking-form__row {
    flex-direction: column;
  }

  .booking-form__col {
    width: 100%;
  }

  .booking-form__tags {
    gap: 0.1rem;
  }

  .booking-form__tag span {
    font-size: 0.13rem;
    padding: 0.08rem 0.16rem;
  }

  .booking-form__checkboxes {
    gap: 0.15rem 0.2rem;
  }

  .booking-form__btn {
    padding: 0.14rem 0.5rem;
    font-size: 0.15rem;
  }

  .service-advisors-box {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }

  .service-advisors-box__title {
    font-size: 0.2rem;
  }

  .service-advisors-box__content {
    padding: 0.3rem 0.25rem;
    font-size: 0.14rem;
  }
}

/* 作词顾问盒子 */
.service-advisors-box {
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  border-top: 0.02rem solid #e8e8e8;
}

.service-advisors-box__title {
  font-size: 0.24rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.08rem;
  text-align: center;
}

.service-advisors-box__subtitle {
  font-size: 0.16rem;
  color: #999;
  margin: 0 0 0.3rem;
  text-align: center;
  font-style: italic;
}

.service-advisors-box__content {
  padding: 0.4rem;
  background: #f5f5f5;
  border-radius: 0.08rem;
  font-size: 0.15rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
  margin-bottom: 0.2rem;
}

.service-advisors-box__link {
  text-align: center;
}

.service-advisors-box__link a {
  display: inline-block;
  font-size: 0.15rem;
  color: #2c5aa0;
  text-decoration: none;
  transition: all 0.3s;
}

.service-advisors-box__link a:hover {
  color: #1e3d6f;
  transform: translateX(0.05rem);
}

/* 预约咨询 */
.booking-section {
  background-image: url('../uploadfiles/service-booking-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 0.8rem 0 1rem;
}

.booking-section .service-section__number::after {
  background: linear-gradient(0deg, #9bc7ea 0%, #a3cbec 100%);
}
.booking-section .service-section__number {
  color: #fff;
}
.booking-section .service-section__title-en {
  color: #fff;
}
.booking-desc {
  text-align: center;
  font-size: 0.18rem;
  color: #333;
  margin-top: -0.5rem;
  line-height: 1.5;
  padding-bottom: 0.8rem;
}

/* 预约表单 */
.booking-form {
}

.booking-form__row {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}
.booking-form__tips {
  border-left:  0.02rem solid #498fc0;
  background: #E4EEF6;
  padding: 0.16rem 0.2rem;
  margin-bottom: 0.3rem;
}
.booking-form__col {
  flex: 1;
}

.booking-form__field {
}

.booking-form__label {
  display: block;
  font-size: 0.16rem;
  font-weight: 600;
  color: #333;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.booking-form__label span {
  color: #61a2d5;
}
.booking-form__select,
.booking-form__input {
  width: 100%;
  padding: 0 0.25rem;
  height: 0.6rem;
  border: 0.01rem solid transparent;
  font-size: 0.16rem;
  background: rgba(255, 255, 255, 1);
  color: #333;
  transition: all 0.3s;
  box-sizing: border-box;
}
.booking-form__select select{
  appearance: auto;
}
.booking-form__select:focus,
.booking-form__input:focus {
  outline: none;
  border-color: #2c5aa0;
}

.booking-form__select::placeholder,
.booking-form__input::placeholder {
  color: #888;
}

.booking-form__tags {
  display: flex;
  flex-wrap: wrap;
}

.booking-form__tag {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
  min-width: 25%;
  padding-right: 0.2rem;
  margin-bottom: 0.2rem;
}

.booking-form__tag span {
  cursor: pointer;
}

.booking-form__tag input[type="radio"],
.booking-form__tag input[type="checkbox"] {
  appearance: none;
  width: 0.18rem;
  height: 0.18rem;
  border: 0.02rem solid #c7def2;
  border-radius: 0.04rem;
  margin-top: 0.01rem;
  background: #fff;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form__tag input[type="checkbox"]:checked {
  background-color: #61a2d5;
  border-color: #61a2d5;
}

.booking-form__tag input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.04rem;
  top: 0.01rem;
  width: 0.06rem;
  height: 0.11rem;
  border: solid #fff;
  border-width: 0 0.03rem 0.03rem 0;
  transform: rotate(45deg);
}

.booking-form__tag input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.02rem rgba(97, 162, 213, 0.3);
}
.booking-form__tag input[type="radio"] {
  appearance: none;
  -webkit-appearance: none; /* 兼容部分旧版本浏览器 */
  width: 0.18rem;
  height: 0.18rem;
  border: 0.02rem solid #c7def2;
  border-radius: 50%; /* 变成正圆 */
  margin-top: 0.01rem;
  background: #fff;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

/* 选中状态：边框变色，背景保持白色（或者你也可以让背景变色，这里提供主流的白底蓝点设计） */
.booking-form__tag input[type="radio"]:checked {
  border-color: #61a2d5;
  background-color: #fff; /* 如果你想让整个圆变蓝，这里改成 #61a2d5 */
}

/* 选中状态下的中心圆点 */
.booking-form__tag input[type="radio"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.08rem;
  height: 0.08rem;
  background-color: #61a2d5; /* 圆点颜色 */
  border-radius: 50%;
  transform: translate(-50%, -50%); /* 完美居中 */
}

/* 焦点状态 */
.booking-form__tag input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.02rem rgba(97, 162, 213, 0.3);
}

.booking-form__textarea {
  width: 100%;
  padding: 0.2rem;
  border: 0.01rem solid transparent;
  font-size: 0.16rem;
  background: rgba(255, 255, 255,1);
  color: #333;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
  transition: all 0.3s;
  box-sizing: border-box;
}

.booking-form__textarea:focus {
  outline: none;
  border-color: #2c5aa0;
}

.booking-form__textarea::placeholder {
  color: #999;
}

.booking-form__upload {
  display: block;
  border: 0.01rem dashed #E4EEF6;
  padding: 0.4rem 0.28rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
  color: #fff;
}

.booking-form__upload:hover {
  color: #2c5aa0;
  outline: none;
  border-color: #2c5aa0;
  background: rgba(27, 58, 87, 0.025);
}

.booking-form__upload--icon {
  font-size: 0.32rem;
  margin-bottom: 0.14rem;
  line-height: 1;
  font-weight: 300;
  transition:all 0.3s ease;
}

.booking-form__upload--text {
  font-size: 0.16rem;
  margin-bottom: 0.08rem;
  font-weight: 400;
  transition:all 0.3s ease;
}

.booking-form__upload--types {
  font-size: 0.14rem;
  font-style: italic;
  letter-spacing: 0.06em;
  transition:all 0.3s ease;
}

.booking-form__upload input[type="file"] { display: none; }

.booking-form__submit {
  text-align: center;
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}

.booking-form__btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.2rem 0.8rem;
  background: #61A2D5;
  color: #fff;
  border: none;
  font-size: 0.14rem;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-form__btn img {
  width: 11px;
  height: 11px;
}

.booking-form__btn:hover {
  background: #2c5aa0;
  box-shadow: 0 0.06rem 0.2rem rgba(44, 90, 160, 0.4);
  transform: translateY(-0.02rem);
}

.booking-form__btn:active {
  transform: translateY(0);
}

/* 1024 */
@media (max-width: 1024px) {
  .Inside-ban .pic img {
    height: 6rem;
  }
}

/* ─── Sticky service-nav ─────────────────────────────── */
.service-nav--sticky {
  position: fixed !important;
  transform: none !important;
  /* left / top set by JS */
}

/* ─── Inquiry Modal Overlay ─────────────────────────── */
.inq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.inq-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 80px;
}
.inq-modal {
  position: relative;
  width: 100%;
  max-width: 880px;
  flex-shrink: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  /* background / fonts set by scoped vars inside */
  --inq-paper: #F5F0E5;
  --inq-paper-deep: #ECE5D4;
  --inq-paper-light: #FAF6EC;
  --inq-ink: #0F1419;
  --inq-ink-soft: #2A3340;
  --inq-ink-muted: #6B7280;
  --inq-indigo: #1B3A57;
  --inq-indigo-soft: #4A6A8A;
  --inq-vermillion: #B85450;
  --inq-gold: #A88B5C;
  --inq-line: #C9C0AE;
  --inq-line-soft: #DCD4C0;
  --inq-font-serif: 'Noto Serif SC', 'Cormorant Garamond', serif;
  --inq-font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --inq-font-latin: 'Cormorant Garamond', serif;
  font-family: var(--inq-font-sans);
  background: var(--inq-paper);
  color: var(--inq-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(27, 58, 87, 0.05), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(168, 139, 92, 0.06), transparent 60%);
}
.inq-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.15 0 0 0 0 0.18 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}
.inq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(15, 20, 25, 0.65);
  border: none;
  cursor: pointer;
  z-index: 200;
  border-radius: 50%;
  color: #F5F0E5;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inq-close:hover {
  background: #1B3A57;
}

/* ─── Scoped modal inner styles ─────────────────────── */
.inq-modal .inq-wrap {
  position: relative;
  z-index: 2;
  padding: 72px 48px 100px;
}
.inq-modal .inq-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--inq-line);
  margin-bottom: 60px;
}
.inq-modal .inq-brand {
  font-family: var(--inq-font-latin);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--inq-ink);
  line-height: 1;
}
.inq-modal .inq-brand-zh {
  display: block;
  font-family: var(--inq-font-serif);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--inq-ink-muted);
  margin-top: 10px;
  font-weight: 400;
}
.inq-modal .inq-masthead-meta {
  text-align: right;
  font-family: var(--inq-font-latin);
  font-style: italic;
  font-size: 14px;
  color: var(--inq-ink-muted);
  line-height: 1.4;
}
.inq-modal .inq-masthead-meta-zh {
  font-family: var(--inq-font-serif);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  color: var(--inq-ink-muted);
}
.inq-modal .inq-title-block {
  margin-bottom: 72px;
  position: relative;
}
.inq-modal .inq-eyebrow {
  font-family: var(--inq-font-latin);
  font-style: italic;
  font-size: 16px;
  color: var(--inq-indigo);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.inq-modal .inq-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--inq-indigo);
  display: inline-block;
  flex-shrink: 0;
}
.inq-modal .inq-title {
  font-family: var(--inq-font-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--inq-ink);
  margin-bottom: 20px;
}
.inq-modal .inq-title-en {
  display: block;
  font-family: var(--inq-font-latin);
  font-style: italic;
  font-weight: 400;
  color: var(--inq-indigo);
  font-size: 38px;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.inq-modal .inq-subtitle {
  font-size: 15px;
  color: var(--inq-ink-soft);
  max-width: 620px;
  line-height: 1.85;
  margin-top: 8px;
}
.inq-modal .inq-section {
  margin-bottom: 64px;
}
.inq-modal .inq-section-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--inq-line-soft);
}
.inq-modal .inq-section-num {
  font-family: var(--inq-font-latin);
  font-style: italic;
  font-size: 20px;
  color: var(--inq-gold);
  font-weight: 500;
  flex-shrink: 0;
}
.inq-modal .inq-section-title {
  font-family: var(--inq-font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--inq-ink);
}
.inq-modal .inq-section-en {
  margin-left: auto;
  font-family: var(--inq-font-latin);
  font-style: italic;
  font-size: 13px;
  color: var(--inq-ink-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.inq-modal .inq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 44px;
}
.inq-modal .inq-grid-full { grid-column: 1 / -1; }
.inq-modal .inq-field { position: relative; }
.inq-modal .inq-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--inq-ink-soft);
  font-weight: 500;
  margin-bottom: 14px;
}
.inq-modal .inq-required {
  color: var(--inq-vermillion);
  font-family: var(--inq-font-serif);
  font-size: 14px;
  font-weight: 400;
}
.inq-modal .inq-label-hint {
  margin-left: auto;
  font-size: 11px;
  color: var(--inq-ink-muted);
  letter-spacing: 0.06em;
  font-weight: 400;
  font-style: italic;
  font-family: var(--inq-font-latin);
}
.inq-modal .inq-input,
.inq-modal .inq-textarea,
.inq-modal .inq-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--inq-line);
  padding: 10px 0;
  font-family: var(--inq-font-sans);
  font-size: 15px;
  color: var(--inq-ink);
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.inq-modal .inq-input::placeholder,
.inq-modal .inq-textarea::placeholder {
  color: var(--inq-ink-muted);
  opacity: 0.55;
  font-weight: 300;
}
.inq-modal .inq-input:focus,
.inq-modal .inq-textarea:focus,
.inq-modal .inq-select:focus {
  border-bottom-color: var(--inq-indigo);
}
.inq-modal .inq-input:hover:not(:focus),
.inq-modal .inq-textarea:hover:not(:focus),
.inq-modal .inq-select:hover:not(:focus) {
  border-bottom-color: var(--inq-indigo-soft);
}
.inq-modal .inq-textarea {
  resize: vertical;
  min-height: 160px;
  padding: 16px 0;
  line-height: 1.75;
}
.inq-modal .inq-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B7280' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.inq-modal .inq-contact-note {
  grid-column: 1 / -1;
  padding: 16px 20px;
  background: rgba(27, 58, 87, 0.04);
  border-left: 2px solid var(--inq-indigo);
  font-size: 13.5px;
  color: var(--inq-ink-soft);
  line-height: 1.7;
  margin-top: -8px;
}
.inq-modal .inq-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px 32px;
}
.inq-modal .inq-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
  user-select: none;
}
.inq-modal .inq-check:hover { color: var(--inq-indigo); }
.inq-modal .inq-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--inq-line);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.inq-modal .inq-check input:checked {
  background: var(--inq-indigo);
  border-color: var(--inq-indigo);
}
.inq-modal .inq-check input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--inq-paper-light);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.inq-modal .inq-check span {
  font-size: 14px;
  color: var(--inq-ink);
  line-height: 1.4;
}
.inq-modal .inq-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
}
.inq-modal .inq-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
  user-select: none;
  transition: color 0.2s ease;
}
.inq-modal .inq-radio:hover { color: var(--inq-indigo); }
.inq-modal .inq-radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--inq-line);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.inq-modal .inq-radio input:checked { border-color: var(--inq-indigo); }
.inq-modal .inq-radio input:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--inq-indigo);
  border-radius: 50%;
}
.inq-modal .inq-radio span { font-size: 14px; }
.inq-modal .inq-upload {
  display: block;
  border: 1px dashed var(--inq-line);
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.inq-modal .inq-upload:hover {
  border-color: var(--inq-indigo);
  background: rgba(27, 58, 87, 0.025);
}
.inq-modal .inq-upload-icon {
  font-family: var(--inq-font-serif);
  font-size: 32px;
  color: var(--inq-gold);
  margin-bottom: 14px;
  line-height: 1;
  font-weight: 300;
}
.inq-modal .inq-upload-text {
  font-size: 14px;
  color: var(--inq-ink-soft);
  margin-bottom: 8px;
}
.inq-modal .inq-upload-types {
  font-size: 12px;
  color: var(--inq-ink-muted);
  font-family: var(--inq-font-latin);
  font-style: italic;
  letter-spacing: 0.06em;
}
.inq-modal .inq-upload input[type="file"] { display: none; }
.inq-modal .inq-hint {
  font-size: 13px;
  color: var(--inq-ink-muted);
  margin-top: 16px;
  line-height: 1.7;
}
.inq-modal .inq-submit-row {
  margin-top: 80px;
  padding-top: 44px;
  border-top: 1px solid var(--inq-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.inq-modal .inq-legal {
  font-size: 12.5px;
  color: var(--inq-ink-muted);
  max-width: 460px;
  line-height: 1.75;
}
.inq-modal .inq-submit {
  background: var(--inq-ink);
  color: var(--inq-paper-light);
  border: none;
  padding: 19px 52px;
  font-family: var(--inq-font-serif);
  font-size: 14px;
  letter-spacing: 0.32em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: relative;
  font-weight: 400;
}
.inq-modal .inq-submit:hover {
  background: var(--inq-indigo);
  letter-spacing: 0.38em;
  padding-right: 60px;
}
.inq-modal .inq-submit-arrow {
  font-family: var(--inq-font-latin);
  font-style: italic;
  font-size: 18px;
  transition: transform 0.4s ease;
}
.inq-modal .inq-submit:hover .inq-submit-arrow { transform: translateX(4px); }
.inq-modal .inq-footer-note {
  text-align: center;
  margin-top: 60px;
  font-size: 12px;
  color: var(--inq-ink-muted);
  font-family: var(--inq-font-latin);
  font-style: italic;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.inq-modal .inq-footer-note-zh {
  display: block;
  font-family: var(--inq-font-serif);
  font-style: normal;
  letter-spacing: 0.4em;
  margin-top: 6px;
  font-size: 11px;
}

/* modal responsive */
@media (max-width: 760px) {
  .inq-modal .inq-wrap { padding: 48px 24px 72px; }
  .inq-modal .inq-title { font-size: 38px; }
  .inq-modal .inq-title-en { font-size: 26px; }
  .inq-modal .inq-grid { grid-template-columns: 1fr; gap: 28px; }
  .inq-modal .inq-masthead { flex-direction: column; align-items: flex-start; gap: 18px; }
  .inq-modal .inq-masthead-meta { text-align: left; }
  .inq-modal .inq-section-head { flex-wrap: wrap; gap: 14px; }
  .inq-modal .inq-section-en { margin-left: 0; width: 100%; }
  .inq-modal .inq-submit-row { flex-direction: column; align-items: stretch; }
  .inq-modal .inq-submit { justify-content: center; }
  .inq-modal .inq-checks { grid-template-columns: 1fr; }
}

/* modal entrance animation */
@keyframes inqFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.inq-overlay.is-open .inq-modal {
  animation: inqFadeUp 0.35s ease-out both;
}
