/* ===== HERO BANNER ===== */
.ibanner {
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.ibanner .swiper-container {
  width: 100%;
  height: 620px;
}
.ibanner .swiper-slide {
  position: relative;
}
.ibanner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ibanner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ibanner .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.ibanner .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  margin: 0 4px;
  display: inline-block;
  cursor: pointer;
  transition: width 0.4s, background 0.4s;
}
.ibanner .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 50px;
}

/* ===== SECTION K1 - Business Scope ===== */
.sect_k1 {
  padding: 80px 0 60px;
  background: var(--white);
}
.sect_k1 .sect_line {
  border-bottom: 1px solid var(--gray-mid);
  margin-bottom: 40px;
}
.nav-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-tabs .swiper-slide {
  width: auto !important;
  padding: 0 15px;
}
.nav-tabs .tab-tit {
  text-align: center;
  padding-bottom: 20px;
  cursor: pointer;
  position: relative;
}
.nav-tabs .tab-tit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-tabs .swiper-slide-thumb-active .tab-tit::after,
.nav-tabs .tab-tit:hover::after {
  width: 30px;
}
.nav-tabs .tab-tit .dot-img {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  padding: 14px;
}
.nav-tabs .swiper-slide-thumb-active .tab-tit .dot-img,
.nav-tabs .tab-tit:hover .dot-img {
  background: var(--gold);
}
.nav-tabs .tab-tit .dot-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-tabs .tab-tit span {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-text);
  transition: color 0.3s;
}
.nav-tabs .swiper-slide-thumb-active .tab-tit span,
.nav-tabs .tab-tit:hover span {
  color: var(--navy);
  font-weight: 600;
}

.tablist {
  position: relative;
}
.tablist .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.5s;
}
.tablist .swiper-slide-active {
  opacity: 1;
}
.tablist .bk-brow {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
}
.tablist .bk-brow img {
  width: 50%;
  height: 400px;
  object-fit: cover;
}
.tablist .bk-brow .bk-cont {
  flex: 1;
  padding: 40px 40px 40px 0;
}
.tablist .bk-brow .bk-tit {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.tablist .bk-brow .bk-tit i {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
}
.tablist .bk-brow .bk-tit p {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.tablist .bk-brow .bk-tit p span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tablist .bk-brow .bk-p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
}
.tablist .bk-brow .bk-p a {
  color: var(--gold);
}

.sect_k1 .swiper-button-next,
.sect_k1 .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, color 0.3s;
}
.sect_k1 .swiper-button-next { right: -24px; }
.sect_k1 .swiper-button-prev { left: -24px; }
.sect_k1 .swiper-button-next:hover,
.sect_k1 .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--white);
}
.sect_k1 .swiper-button-next i,
.sect_k1 .swiper-button-prev i {
  font-size: 18px;
  color: var(--navy);
}
.sect_k1 .swiper-button-next:hover i,
.sect_k1 .swiper-button-prev:hover i {
  color: var(--white);
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s, gap 0.3s;
  background: transparent;
}
.more:hover {
  background: var(--gold);
  color: var(--white);
  gap: 14px;
}

/* ===== SECTION K2 - Cases ===== */
.sect_k2 {
  padding: 80px 0;
  background: var(--gray-light);
}
.block-1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.block-1 .brow {
  overflow: hidden;
}
.block-1 .brow:nth-child(1) {
  grid-row: span 2;
}
.block-1 .bimg {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.block-1 .bimg a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.block-1 .bimg a img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.block-1 .brow:nth-child(1) .bimg a img {
  height: 572px;
}
.block-1 .bimg a .btit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.block-1 .bimg a .btit span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.block-1 .bimg a .btit p {
  font-size: 16px;
  font-weight: 600;
}
.block-1 .bimg a:hover img {
  transform: scale(1.1);
}
.block-1 .bimg a:hover .btit {
  opacity: 1;
  transform: translateY(0);
}
.block-1 .brow:nth-child(1) .bimg a .btit p {
  font-size: 20px;
}

/* ===== SECTION YS - Advantages ===== */
.sect_ys {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.ys-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sect_ys .ys-span {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.sect_ys .brow {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  height: 100%;
  box-sizing: border-box;
}
.sect_ys .brow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.sect_ys .brow i {
  display: block;
  height: 56px;
  margin-bottom: 16px;
}
.sect_ys .brow i img {
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.sect_ys .brow:hover i img {
  opacity: 1;
}
.sect_ys .brow p {
  line-height: 1.6;
}
.sect_ys .brow span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.sect_ys .brow b {
  display: block;
  font-size: 13px;
  opacity: 0.5;
  font-weight: 400;
  margin-bottom: 8px;
}
.sect_ys .brow font {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}
.sect_ys .brow:hover font {
  opacity: 0.9;
}

/* ===== SECTION K3 - About ===== */
.sect_k3 {
  padding: 80px 0;
  background: var(--gray-light);
  position: relative;
}
.sect_k3 .btit {
  position: absolute;
  left: 5%;
  top: 30px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(11,29,46,0.04);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 8px;
}
.sect_k3 .block-2 {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  box-sizing: border-box;
}
.sect_k3 .block-2 img {
  max-height: 50px;
  margin-bottom: 16px;
}
.sect_k3 .block-2 span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.sect_k3 .block-2 p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.sect_k3 .block-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}
.sect_k3 .block-3 a {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.sect_k3 .block-3 a img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sect_k3 .block-3 a p {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(11,29,46,0.5);
  transition: background 0.3s;
}
.sect_k3 .block-3 a p span {
  font-size: 20px;
  font-weight: 700;
}
.sect_k3 .block-3 a p i {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sect_k3 .block-3 a:hover img {
  transform: scale(1.1);
}
.sect_k3 .block-3 a:hover p {
  background: rgba(201,169,110,0.8);
}

/* ===== SECTION K4 - News ===== */
.sect_k4 {
  padding: 80px 0;
  background: var(--white);
}
.sect_k4 .span-4 {
  position: relative;
}
.sect_k4 .span-4::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 80%;
  background: var(--gray-mid);
}
.sect_k4 .span-4:last-child::after {
  display: none;
}
.pad-r {
  padding-right: 30px;
}

.inews-box {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-light);
  margin-bottom: 20px;
}
.inews-box .date {
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  display: inline-block;
}
.inews-box .bimg {
  height: 180px;
  overflow: hidden;
}
.inews-box .bimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.inews-box:hover .bimg img {
  transform: scale(1.08);
}
.inews-box h4 {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.inews-box h4 a {
  color: var(--navy);
}
.inews-box h4 a:hover {
  color: var(--gold);
}

.inews-box2 {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inews-box2:last-child {
  border-bottom: none;
}
.inews-box2 .fl {
  flex: 1;
}
.inews-box2 .fl h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.inews-box2 .fl h4 a {
  color: var(--dark-text);
}
.inews-box2 .fl h4 a:hover {
  color: var(--gold);
}
.inews-box2 .fl span {
  font-size: 12px;
  color: var(--gray-text);
}
.inews-box2 .fl span i {
  margin-right: 4px;
}
.inews-box2 .fr span {
  display: inline-block;
  padding: 2px 12px;
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  font-size: 12px;
}

.news-box {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-mid);
}
.news-box .span-4 {
  width: 100px;
  flex-shrink: 0;
}
.news-box .icon {
  width: 100px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
}
.news-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-box:hover .icon img {
  transform: scale(1.08);
}
.news-box .span-8 {
  flex: 1;
}
.news-box h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-box h4 a {
  color: var(--dark-text);
}
.news-box h4 a:hover {
  color: var(--gold);
}
.news-box span {
  font-size: 12px;
  color: var(--gold);
}
.news-box p {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 4px;
  line-height: 1.5;
}

.news-box2 {
  margin-bottom: 30px;
}
.news-box2 a {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-box2 a:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.news-box2 .icon {
  width: 280px;
  min-height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--gray-light);
  display: block !important;
}
.news-box2 .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-box2 a:hover .icon img {
  transform: scale(1.08);
}
.news-box2 .date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
  color: var(--gray-text);
  font-size: 12px;
  line-height: 1.3;
}
.news-box2 .date span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.news-box2 .ntit {
  flex: 1;
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-box2 .ntit h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.news-box2 a:hover .ntit h3 {
  color: var(--gold);
}
.news-box2 .ntit p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.news-box2 .ntit span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.inews-box3 {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.inews-box3:last-child {
  border-bottom: none;
}
.inews-box3 .btit {
  position: relative;
  padding-left: 28px;
  margin-bottom: 4px;
}
.inews-box3 .btit::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--gray-light);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
.inews-box3 .btit span {
  font-size: 15px;
  font-weight: 500;
}
.inews-box3 .btit span a {
  color: var(--dark-text);
}
.inews-box3 .btit span a:hover {
  color: var(--gold);
}
.inews-box3 .bny {
  position: relative;
  padding-left: 28px;
}
.inews-box3 .bny::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.inews-box3 .bny p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}

.sect_k4 .span-4 > a:last-child {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.sect_k4 .span-4 > a:last-child:hover {
  color: var(--gold-dark);
}

/* ===== SECTION K5 - Partners ===== */
.sect_k5 {
  padding: 0;
}
.sect_k5 .wrap4 {
  background: var(--gray-light);
  padding: 60px 4%;
  border-radius: 0;
}
.block-4 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-4 .media-box {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.block-4 .media-box .icon {
  background: transparent;
}
.block-4 .media-box .icon img {
  max-height: 70px;
  width: auto;
}

/* ===== SUBPAGE BANNER ===== */
.nbanner {
  margin-top: var(--header-h);
  height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.nbanner.nban1 { background: linear-gradient(135deg, var(--navy) 0%, #1A334A 100%); }
.nbanner.nban2 { background: linear-gradient(135deg, #1A334A 0%, var(--navy) 100%); }
.nbanner.nban3 { background: linear-gradient(135deg, #0F2A40 0%, var(--navy-light) 100%); }
.nbanner.nban4 { background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%); }
.nbanner.nban5 { background: linear-gradient(135deg, var(--navy) 0%, #0F2A40 100%); }
.nbanner .bH {
  width: 100%;
}
.nbanner .bfont {
  text-align: center;
  color: var(--white);
}
.nbanner .bfont i {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.6;
  margin-bottom: 8px;
  font-style: normal;
}
.nbanner .bfont span {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
}
.nbanner .bfont span font {
  color: var(--gold);
}
.nbanner .bfont .ndot {
  font-size: 24px;
  letter-spacing: 6px;
  margin-top: 12px;
  color: var(--gold);
}

/* ===== SUBPAGE CONTENT ===== */
.nbg_k1 { background: var(--gray-light); padding: 60px 0; }
.nbg_k2 { background: var(--white); padding: 60px 0; }
.nbg_k3 { background: var(--gray-light); padding: 60px 0; }
.nbg_k4 { background: var(--gray-light); padding: 60px 0; margin-top: 0; }
.nbg_k5 { background: var(--white); padding: 60px 0; }
.nbg_k6 { background: var(--gray-light); padding: 60px 0; }

/* ===== NEWS LIST ===== */
.nlist {
  list-style: none;
  padding: 0;
}
.nlist li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.nlist li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  display: block;
  margin-bottom: 4px;
}
.nlist li a:hover {
  color: var(--gold);
}
.nlist li span {
  font-size: 13px;
  color: var(--gray-text);
}
.nlist li p {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 4px;
}

/* ===== NEWS LIST 2 (FAQ) ===== */
.nlist-2 {
  list-style: none;
  padding: 0;
}
.nlist-2 li {
  background: var(--gray-light);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 16px 20px;
  position: relative;
}
.nlist-2 li:before {
  content: '';
  display: none;
}
.nlist-2 li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  display: block;
}
.nlist-2 li a:hover {
  color: var(--gold);
}
.nlist-2 li i {
  float: right;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray-text);
  transition: transform 0.3s;
}
.nlist-2 li i.open {
  transform: rotate(45deg);
}
.nlist-2 li .navContent {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-mid);
  background: transparent;
}
.nlist-2 li .navContent p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ===== CASE BOX ===== */
.case-box a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.case-box a .icon img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s;
}
.case-box a:hover .icon img {
  transform: scale(1.08);
}
.case-box a .btit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
}
.case-box a .btit span {
  font-size: 12px;
  opacity: 0.7;
}
.case-box a .btit p {
  font-size: 16px;
  font-weight: 600;
}

.case-box2 {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 20px;
}
.case-box2:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.case-box2 .icon {
  width: 280px;
  flex-shrink: 0;
}
.case-box2 .icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.case-box2 .ntit {
  padding: 24px;
  flex: 1;
}
.case-box2 .ntit h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.case-box2 .ntit span {
  font-size: 13px;
  color: var(--gray-text);
  margin-right: 16px;
}
.case-box2 .ntit a {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}
.case-box2 .ntit a:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== PRO BOX ===== */
.pro-box {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.pro-box:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.pro-box .icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.pro-box .ntit {
  text-align: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.pro-box2 {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

/* ===== NBK - Numbered Blocks ===== */
.nbk-1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.nbk-1 .brow {
  display: block;
  background: var(--white);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  color: inherit;
  text-decoration: none;
}
.nbk-1 .brow:hover {
  background: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.3);
}
.nbk-1 .brow img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}
.nbk-1 .brow i {
  display: block;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: normal;
}
.nbk-1 .brow:hover i {
  color: var(--white);
}
.nbk-1 .btit b {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-text);
  font-style: normal;
}
.nbk-1 .btit span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.nbk-1 .brow:hover .btit span,
.nbk-1 .brow:hover .btit b,
.nbk-1 .brow:hover p {
  color: var(--white);
}
.nbk-1 .brow p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-top: 8px;
}

/* ===== NAV TABS 2 ===== */
.nav-tabs2 {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.nav-tabs2 .tab-tit {
  text-align: center;
  cursor: pointer;
  padding: 0 24px;
}
.nav-tabs2 .tab-tit i {
  display: block;
  font-size: 28px;
  color: var(--gray-text);
  margin-bottom: 8px;
}
.nav-tabs2 .tab-tit span {
  display: block;
  font-size: 15px;
  color: var(--gray-text);
  font-weight: 500;
}
.nav-tabs2 .swiper-slide-thumb-active .tab-tit i,
.nav-tabs2 .tab-tit:hover i,
.nav-tabs2 .swiper-slide-thumb-active .tab-tit span,
.nav-tabs2 .tab-tit:hover span {
  color: var(--gold);
}

/* ===== HONOR BOX ===== */
.hbox {
  margin-bottom: 20px;
}
.hbox .icon {
  border-radius: 12px;
  overflow: hidden;
}
.hbox .icon img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.hbox .ntit {
  text-align: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
}

/* ===== SEARCH ===== */
.search {
  position: relative;
}
.search .text {
  width: 240px;
  height: 40px;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  padding: 0 16px;
  font-size: 14px;
}
.search .text:focus {
  border-color: var(--gold);
}
.search .btn1 {
  height: 40px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 8px;
}
.search .btn1:hover {
  background: var(--gold-dark);
}

/* ===== PRO-SUB TABS ===== */
.pro-sub {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pro-sub .tab-tit {
  padding: 8px 20px;
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-size: 14px;
}
.pro-sub .tab-tit.active,
.pro-sub .tab-tit:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
