@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Inter", Arial, sans-serif;
  --nav-font: "Inter", Arial, sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #000000;
  --accent-color: #096b94;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

body, button, input, textarea, select, a, p, span, li, h1, h2, h3, h4, h5, h6 {
  font-family: var(--default-font);
}

:root {
  --nav-color: #212529;
  --nav-hover-color: #096b94;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #096b94;
}

:root {
  --bg-white: #ffffff;
  --bg-gray: #f3f6f9;
  --text-primary: #1a2332;
  --text-secondary: #5a6678;
  --text-muted: #8892a2;
  --circle-border: #cdd9ea;
  --accent: #1a8493;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body { 
  overflow-x: hidden; 
 }


@media (min-width:576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width:1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width:1600px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width:1920px) {
  .container {
    max-width: 1560px;
  }
}

@media (min-width:2560px) {
  .container {
    max-width: 1600px;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .header .logo {
    margin-left: 0px;
  }

}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 24px 25px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    margin-top: 18px;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 38px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/* Megamenu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-1 {
    position: static;

  }

  .navmenu .megamenu-1 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-1 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);

    position: absolute;
    top: 100%; /* 紧贴导航栏底部 */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* 全屏背景 */
    max-width: 100vw;

    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 999; /* 确保在最上层 */
    padding: 80px 0; /* 保留垂直间距，内容仍在 container 内 */
    display: flex;
    justify-content: center;
    gap: 40px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navmenu .megamenu-1 .desktop-megamenu .desktop-megamenu-inner {
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .navmenu .megamenu-1:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-1 .megamenu-sections {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 35px;
    box-sizing: border-box;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;

  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category h4 {
    color: var(--heading-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category h4 i {
    color: var(--accent-color);
    font-size: 18px;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items a {
    color: var(--nav-dropdown-color);
    font-size: 18px;
    transition: all 0.3s;
    padding: 6px 0;
    position: relative;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items p {
    font-size: 18px;
    line-height: 30px;
  }

  .navmenu .megamenu-1 .megamenu-sections .menu-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-top: auto;
    transition: all 0.3s ease;
  }

  .navmenu .megamenu-1 .megamenu-sections .menu-cta-btn:hover {
    opacity: 0.9;
    transform: translateX(5px);
    /* 向右微移 */
    box-shadow: 0 4px 15px rgba(18, 58, 107, 0.3);
  }

  .navmenu .megamenu-1 .megamenu-sections .menu-cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .navmenu .megamenu-1 .megamenu-sections .menu-cta-btn:hover i {
    transform: translateX(4px);
    /* 箭头向右移动 */
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 12px;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items a.view-all {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items a.view-all:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items a.view-all:hover i {
    transform: translateX(5px);
  }

  .navmenu .megamenu-1 .megamenu-sections .services-grid .service-category .category-items a.view-all i {
    transition: 0.3s;
  }

  .navmenu .megamenu-1 .featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .navmenu .megamenu-1 .featured-content .featured-card {
    background-color: var(--surface-color);
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-image {
    height: auto overflow: hidden;
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.3s;
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info {
    padding: 20px;
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info .btn-featured {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info .btn-featured:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info .btn-featured:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-1 .featured-content .featured-card .featured-info .btn-featured i {
    transition: 0.3s;
  }

  .navmenu .megamenu-1 .featured-content .featured-card:hover .featured-image img {
    transform: scale(1.05);
  }


}

/* Megamenu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-1 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-1 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-1 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-1 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-1 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-1 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #262626;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 15px;
  position: relative;
}

.footer .footer-top {
  background-color: #2e3033;
  padding: 80px 0;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
  padding-right: 50px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 16px;
}

.footer .footer-contact a{
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #bababa;
  font-size: 17px;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: #a3a3a3;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

.footer .copyright .logo img {
  max-height: 48px;
  margin-right: 8px;
  float: left;
}

@media (max-width: 768px) {
    .copyright-left{
        margin-bottom:20px;
    }
    .footer .copyright .logo img {
      max-height: 38px;
      margin-right: 8px;
      float: left;
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 50px 0 120px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
}

/* 遮罩层 */
.page-title .heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.page-title .heading .container {
  position: relative;
  z-index: 1;
}

.page-title .heading h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  /* padding-bottom: 30px; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
}

.page-title .heading p {
  color: #fff;
  font-size: 20px;
  margin-top: 30px;
}

/* === 子导航样式 (叠加在图片底部) === */
.overlay-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.sub-nav-inner {
  display: flex;
  align-items: center;
  gap: 1px;
}

/* 按钮样式 */
.sub-nav-item {
  padding: 22px 0px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 18px;
  width: 280px;
  text-align: center;
}

/* 鼠标悬停 */
.sub-nav-item:hover {
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
  color: #fff;
}

/* 选中状态：蓝色背景，符合图片效果 */
.sub-nav-item.active {
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
  color: #fff;
}

/* === 面包屑导航 (独立背景) === */
.page-title nav.breadcrumbs {
  background-color: #f8f9fa;
  padding: 25px 0;
  border-bottom: 1px solid #e9ecef;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #909090;
}

.page-title nav ol li a {
  color: #919191;
  text-decoration: none;
}

.page-title nav ol li a:hover {
  color: #03376e;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #999;
}

/* === 移动端适配 === */
@media (max-width: 992px) {
  .page-title .heading {
    min-height: 400px;
    padding: 100px 0 80px 0;
  }

  .page-title .heading h1 {
    font-size: 2rem;
    padding-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-title .heading {
    min-height: 380px;
    padding: 30px 0 70px 0;
    /* 增加底部padding防止标题被导航遮挡 */
  }

  .page-title .heading h1 {
    font-size: 1.75rem;
  }

  .page-title .heading p {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  /* 移动端子导航改为可滑动 */
  .overlay-nav {
    background-color: rgba(0, 0, 0, 0.7);
    /* 移动端背景更深一点 */
    padding: 10px 0;
  }

  .sub-nav-inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* 隐藏滚动条 */
    padding: 0 15px;
    gap: 10px;
  }

  .sub-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .sub-nav-item {
    flex-shrink: 0;
    /* 不压缩宽度 */
    font-size: 15px;
    padding: 12px 18px;
    width: 180px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  position: relative;
  text-indent: 70px;
  margin-top: -22px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 35px 0 0 0;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.esection-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.esection-title h2 {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.esection-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.esection-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.esection-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: #0a0a0a;
}

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

.hero .swiper-wrapper {
  height: auto !important;
}

.hero .cinema-frame {
  position: relative;
  height: 95vh;
  min-height: 560px;
  max-height: 1000px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.header-p{
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 92%;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 76px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 34px;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
  letter-spacing: -0.5px;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid linear-gradient(to right, #123a6b, #096b94, #2fa291);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
}

.hero .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

.hero .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .refined-btn:hover i {
  transform: translateX(5px);
}

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .swiper-button-prev:hover::after,
.hero .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero .content-inner h3 {
    font-size: 42px;
  }

  .hero .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero .cinema-frame {
    height: 70vh;
    min-height: 480px;
  }

  .hero .content-inner h3 {
    font-size: 36px;
  }

  .hero .content-inner p {
    font-size: 16px;
  }

  .hero .frame-content {
    padding: 0 6%;
  }

  .hero .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero .cinema-frame {
    height: 80vh;
    min-height: 520px;
  }

  .hero .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero .content-inner {
    max-width: 100%;
  }

  .hero .content-inner h3 {
    font-size: 30px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero .swiper-button-prev::after,
  .hero .swiper-button-next::after {
    font-size: 14px;
  }

  .hero .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero .cinema-frame {
    height: 35vh;
    min-height: 360px;
  }

  .hero .content-inner h3 {
    font-size: 26px;
  }

  .hero .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero .frame-content {
    padding: 0 20px 100px;
  }

  .hero .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero .controls-inner {
    gap: 16px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products{
  background: #f8f9fa;
}
.products .seasonal-hero {
  text-align: center;
  position: relative;
  padding: 3rem 0;
}

.products .seasonal-hero .seasonal-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
  color: var(--contrast-color);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.products .seasonal-hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products .seasonal-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products .seasonal-hero .festival-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}

.products .seasonal-hero .festival-dates i {
  font-size: 1.2rem;
}

.products .feature-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.products .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.products .feature-card .feature-visual {
  position: relative;
  height: auto;  
  overflow: hidden;
}

.products .feature-card .feature-visual img {
  width: 100%;
  height: auto;  
  max-width: 100%;
  object-fit: unset; 
  transition: transform 0.6s ease;
}

.products .feature-card .feature-visual .feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.products .feature-card .feature-visual .feature-badge i {
  font-size: 1rem;
}

.products .feature-card .feature-visual:hover img {
  transform: scale(1.1);
}

.products .feature-card .feature-content {
  padding: 2.5rem;
}

.products .feature-card .feature-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.products .feature-card .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 18px;
}

.products .feature-card .feature-content .feature-highlights {
  margin-bottom: 2rem;
}

.products .feature-card .feature-content .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.products .feature-card .feature-content .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.products .feature-card .feature-content .feature-highlights .highlight-item span {
  font-weight: 500;
}

.products .feature-card .feature-content .feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.products .feature-card .feature-content .feature-link:hover {
  gap: 1.2rem;
  color: color-mix(in srgb, var(--accent-color), #000 20%);
}

.products .feature-card .feature-content .feature-link i {
  transition: transform 0.3s ease;
}

.products .feature-card .feature-content .feature-link:hover i {
  transform: translateX(5px);
}

.products .awards-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 5rem 0;
}

.products .awards-section .awards-content h3 {
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.products .awards-section .awards-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.products .awards-section .awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.products .awards-section .awards-grid .award-item {
  display: flex;
  gap: 1.5rem;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.products .awards-section .awards-grid .award-item:hover {
  transform: translateY(-5px);
}

.products .awards-section .awards-grid .award-item .award-icon {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 5px;  
}

.products .awards-section .awards-grid .award-item .award-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.products .awards-section .awards-grid .award-item .award-details h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.products .awards-section .awards-grid .award-item .award-details span {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.products .community-section {
  margin: 5rem 0;
}

.products .community-section .community-card,
.products .community-section .sustainability-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.products .community-section .community-header,
.products .community-section .sustainability-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.products .community-section .community-header .community-icon,
.products .community-section .community-header .sustainability-icon,
.products .community-section .sustainability-header .community-icon,
.products .community-section .sustainability-header .sustainability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 20%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.products .community-section .community-header .community-icon i,
.products .community-section .community-header .sustainability-icon i,
.products .community-section .sustainability-header .community-icon i,
.products .community-section .sustainability-header .sustainability-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.products .community-section .community-header h3,
.products .community-section .sustainability-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.products .community-section .community-header p,
.products .community-section .sustainability-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.products .community-section .community-stats .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.products .community-section .community-stats .stat-row:last-child {
  margin-bottom: 0;
}

.products .community-section .community-stats .stat-row .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 15px;
}

.products .community-section .community-stats .stat-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.products .community-section .community-stats .stat-row .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.3;
}

.products .community-section .sustainability-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.products .community-section .sustainability-features .feature-item:last-child {
  border-bottom: none;
}

.products .community-section .sustainability-features .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.products .community-section .sustainability-features .feature-item span {
  font-weight: 500;
}

@media (max-width: 992px) {
  .products .seasonal-hero h2 {
    font-size: 2.8rem;
  }

  .products .awards-section {
    padding: 3rem 2rem;
  }

  .products .awards-section .awards-grid {
    grid-template-columns: 1fr;
  }

  .products .community-section .community-stats .stat-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .products .seasonal-hero h2 {
    font-size: 2.2rem;
  }

  .products .seasonal-hero p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Homecase Section
--------------------------------------------------------------*/
.homecase {
  padding: 100px 0;
}

/* Section Title */
.homecase .section-title h2 {
  margin-bottom: 10px;
}

/* Leadership Section */
.homecase .leadership-section {
  padding-top: 30px;
}

/* Swiper */
.homecase .leaders-slider {
  padding-bottom: 50px;
}

.homecase .swiper-wrapper {
  height: auto !important;
}

/* Card */
.homecase .leader-tile {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.35s ease;
}

.homecase .leaders-slider .swiper-slide .leader-tile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.homecase .leader-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  border-color: transparent;
}

.homecase .leader-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.homecase .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.homecase .leader-tile:hover .leader-photo img {
  transform: scale(1.05);
}

/* Content */
.homecase .leader-body {
  padding: 25px;
}

.homecase .leader-body h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.homecase .leader-body p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

/* Place Info */
.homecase .place-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.homecase .place-info span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Icons */
.homecase .leader-links {
  display: flex;
  gap: 8px;
}

.homecase .leader-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.homecase .leader-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Pagination */
.homecase .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  opacity: 1;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  transition: all 0.3s ease;
}

.homecase .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--accent-color);
}

.homecase .careers-banner {
  padding: 50px;
  border-radius: 12px;
  background:linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
}

.homecase .banner-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.homecase .careers-banner h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color:#fff;
}

.homecase .careers-banner p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color:#fff;
}

.homecase .banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.homecase .btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  background: #e78937;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.homecase .btn-accent:hover {
  transform: translateY(-3px);
}

.homecase .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.homecase .btn-text:hover {
  color: var(--accent-color);
}

.homecase .leaders-slider .swiper-slide {
  height: auto;
  display: flex;
}

.homecase .leaders-slider .leader-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.homecase .leaders-slider .leader-links {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .homecase .careers-banner {
    padding: 35px 25px;
    text-align: center;
  }

  .homecase .banner-actions {
    justify-content: center;
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .homecase .leader-body h5 {
    font-size: 18px;
  }

  .homecase .careers-banner h4 {
    font-size: 24px;
  }

  .homecase .banner-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .homecase {
    padding: 70px 0;
  }

  .homecase .leader-body {
    padding: 20px;
  }

  .homecase .careers-banner {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.product-section {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  z-index: 0;
}

.product-section .section-title {
  font-size: 44px;
  font-weight: 700;
}

.bg-split-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 66%;
  height: 100%;
  background: var(--bg-white);
  z-index: -2;
}

.bg-split-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: var(--bg-gray);
  z-index: -1;
}

.main-row {
  min-height: 76vh;
  align-items: center;
}

.left-content {
  background: transparent;
}

.posts-section .section-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0;
}

.posts-section .section-title::before {
  content: '///';
  margin-right: 15px;
  color: #186974;
  font-weight: 100;
  font-size: 44px;
}

.product-section .section-title::before {
  content: '///';
  margin-right: 15px;
  color: #186974;
  font-weight: 100;
  font-size: 44px;
}

.posts-section .section-title h2 {
  font-size: 44px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  position: relative;
  text-indent: 70px;
  margin-top: -22px;
}

.posts-section .section-title::before {
  content: '///';
  margin-right: 15px;
  color: #186974;
  font-weight: 100;
  font-size: 42px;
  letter-spacing: 1px;
}

.section-description {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 580px;
}

.subsection-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  transition: opacity 0.6s ease;
}

.subsection-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 40px;
  transition: opacity 0.6s ease;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
  transition: all 0.3s ease;
}

.explore-btn .btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.35);
  color: #fff;
}

.explore-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.right-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76vh;
  padding: 40px 0;
}

.circle-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1 / 1;
}

.main-circle {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-open-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.open-circle-path {
  fill: none;
  stroke: var(--circle-border);
  stroke-width: 3;
}

.center-product {
  text-align: center;
  transition: opacity 0.6s ease;
  z-index: 5;
}

.center-product img {
  max-width: 75%;
  height: auto;
  transition: opacity 0.6s ease;
}

.center-product-title {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: opacity 0.6s ease;
}

.svg-draw-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

.draw-circle-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease;
}

.draw-circle-path.animate {
  stroke-dashoffset: 0;
}

.icon-node {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.icon-node.top {
  top: 1.1%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-node.bottom {
  bottom: 1.1%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.icon-node.right {
  right: 1.1%;
  top: 50%;
  transform: translate(50%, -50%);
}

.icon-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--circle-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.icon-inner img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: all 0.5s ease;
}

.icon-node.active .icon-inner {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.icon-node.active .icon-inner img {
  filter: brightness(0) invert(1);
}

.icon-node.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px dashed var(--accent);
  animation: rotateDashed 12s linear infinite;
  opacity: 0.4;
}

@keyframes rotateDashed {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.icon-node:hover:not(.active) .icon-inner {
  border-color: var(--accent);
  transform: scale(1.08);
}

.progress-wrapper {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 30;
}

.progress-item {
  width: 80px;
  height: 3px;
  background: var(--circle-border);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.progress-item:hover {
  background: #b8c7db;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.8s ease;
}

.progress-item.active {
  background: rgba(37, 99, 235, 0.15);
}

.progress-item.active .progress-fill {
  width: 100%;
}

#cms-data-source {
  display: none;
}

@media (max-width: 1400px) {
  .circle-wrapper {
    max-width: 600px;
  }
}

@media (max-width: 1200px) {
  .icon-node {
    width: 65px;
    height: 65px;
  }

  .icon-inner img {
    width: 28px;
  }

  .left-content {
    padding: 60px 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .subsection-title {
    font-size: 26px;
  }
}

@media (max-width: 991px) {

  .bg-split-left,
  .bg-split-right {
    display: none;
  }

  .left-col {
    background: var(--bg-white);
  }

  .right-col {
    background: var(--bg-gray);
  }

  .main-row {
    flex-direction: column;
  }

  .left-content {
    padding: 60px 30px 40px;
    text-align: center;
  }

  .section-description,
  .subsection-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .right-content {
    min-height: auto;
    padding: 40px 20px 120px;
  }

  .circle-wrapper {
    width: 400px;
    height: 400px;
    max-width: 100%;
    margin-top: 60px;

  }

  .progress-wrapper {
    position: absolute;
    bottom: 40px;
  }
}

@media (max-width: 576px) {
  .circle-wrapper {
    width: 350px;
    height: 350px;
    margin-top: 60px;
  }

  .icon-node {
    width: 48px;
    height: 48px;
  }

  .section-title {
    font-size: 30px;
    padding-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/*--------------------------------------------------------------
# Posts Section Section
--------------------------------------------------------------*/
.posts-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.posts-section .section-title-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.posts-section .section-title-wrapper p {
  font-size: 15px;
  color: var(--default-color);
  margin: 0;
  max-width: 400px;
}

.posts-section .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
}

.posts-section .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(5px);
}

/* 2. 左侧特色文章 */
.posts-section .featured-post {
  background-color: #f5f5f5;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.posts-section .featured-post:hover {
  box-shadow: 0 8px 35px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-5px);
}

.posts-section .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.posts-section .featured-img {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 30px;
}

.posts-section .featured-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.posts-section .featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 4px;
  text-transform: uppercase;
}

.posts-section .featured-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.posts-section .featured-title {
  margin: 0 0 16px;
}

.posts-section .featured-title a {
  color: #333333;
  font-size: 24px;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.3s;
}

.posts-section .featured-title a:hover {
  color: var(--accent-color);
}

.posts-section .featured-excerpt {
  color: #848484;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 20px;
  flex-grow: 1;
}

.posts-section .featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.posts-section .meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.posts-section .meta-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.posts-section .meta-author span {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.posts-section .meta-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* 3. 右侧列表文章 */
.posts-section .side-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.posts-section .side-post-item {
  display: flex;
  justify-content: space-between;
  /* 左右分布 */
  align-items: center;
  background-color: var(--surface-color);
  padding: 30px 25px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  cursor: pointer;
  border-top: 1px solid #e1e1e1;
}

.posts-section .side-post-item:last-child {
  border-bottom: 1px solid #e1e1e1;
}

.posts-section .side-post-item:hover {
  box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 88%);
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.posts-section .side-post-item:hover .side-post-title a {
  color: var(--accent-color);
}

.posts-section .side-post-item:hover .meta-arrow {

  color: #4561af;
}

/* 左侧内容 */
.posts-section .side-post-content {
  flex: 1;
  padding-right: 20px;
}

.posts-section .side-post-title {
  margin: 0 0 10px;
}

.posts-section .side-post-title a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}

.posts-section .side-post-desc {
  font-size: 19px;
  color: #848484;
  margin: 0;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 右侧元数据 (日期 + 箭头) */
.posts-section .side-post-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 50px;
}

.posts-section .meta-date-box {
  text-align: center;
}

.posts-section .date-text {
  display: block;
  font-size: 30px;
  font-weight: 300;
  color: #acacac;
  line-height: 1.2;
}

.posts-section .meta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #acacac;
  transition: 0.3s;
  font-size: 32px;
}

/* Responsive */
@media (max-width: 992px) {
  .posts-section .featured-img img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .posts-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .posts-section .side-post-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .posts-section .side-post-meta {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-slider {
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px 60px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 {
  position: relative;
  padding: 120px 0;
}

.about-3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 560px;
  background-image: url('../img/profile.jpg');
  background-size: cover;
  background-position: center top;
  z-index: -1;
  pointer-events: none;
}

.about-3 .content h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about-3 .content h2 {
    font-size: 32px;
  }
}

.about-3 .content .lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about-3 .content p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-3 .stats-row {
  display: flex;
  gap: 40px;
  margin: 60px 0;
}

@media (max-width: 576px) {
  .about-3 .stats-row {
    flex-direction: column;
    gap: 30px;
  }
}

.about-3 .stats-row .stat-item .stat-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about-3 .stats-row .stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
}

.about-3 .cta-section {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 576px) {
  .about-3 .cta-section {
    flex-direction: column;
  }
}

.about-3 .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-3 .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about-3 .cta-section .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-3 .cta-section .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about-3 .image-wrapper {
  position: relative;
}

.about-3 .image-wrapper img {
  border-radius: 2px;
  padding-left: 60px;
}

.about-3 .image-wrapper .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  max-width: 280px;
}

@media (max-width: 992px) {
  .about-3 .image-wrapper .floating-card {
    position: static;
    margin-top: 30px;
    max-width: none;
  }
}

.about-3 .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-3 .image-wrapper .floating-card .card-content .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-3 .image-wrapper .floating-card .card-content .icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.about-3 .image-wrapper .floating-card .card-content .text h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
}

.about-3 .image-wrapper .floating-card .card-content .text p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about-3 .row {
    text-align: center;
  }

  .about-3 .content {
    margin-bottom: 60px;
  }

  .about-3 .stats-row {
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 60px 0;
  overflow: hidden;
}

.hero-3:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-3 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-3 .container {
  position: relative;
  z-index: 3;
}

.hero-3 h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
}

.hero-3 p {
  margin: 10px 0 0 0;
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .hero-3 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-3 p {
    font-size: 18px;
    line-height: 24px;
  }
}

.hero-3 .btn-get-started {
  color: var(--contrast-color);
  background: linear-gradient(to right, #30619d, #096b94, #2fa291);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
}

.hero-3 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-3 .icon-box {
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.hero-3 .icon-box {
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.hero-3 .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(18,58,107,0.9),
    rgba(9,107,148,0.9),
    rgba(47,162,145,0.9)
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.hero-3 .icon-box * {
  position: relative;
  z-index: 2;
}

.hero-3 .icon-box:hover::before {
  opacity: 1;
}

.hero-3 .icon-box:hover h4,
.hero-3 .icon-box:hover p,
.hero-3 .icon-box:hover i {
  color: #fff;
}

.hero-3 .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.hero-3 .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.hero-3 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.hero-3 .icon-box .description {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left:0;
  font-weight: 400;
}

.hero-3 .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 46px;
  line-height: 1;
  color: var(--accent-color);
}

@media (min-width: 640px) {
  .hero-3 .icon-box:hover {
    transform: scale(1.08);
  }

  .hero-3 .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services .services-content h2 {
    font-size: 28px;
  }
}

.services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .services-content .btn-consultation span {
  margin-right: 8px;
}

.services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.services .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.services .services-slider .swiper-wrapper {
  height: auto !important;
}

.services .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;

}

.services .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.services .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.services .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.services .service-card:hover .content p {
  color: var(--contrast-color);
}

.services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.services .swiper-navigation button:last-child {
  margin-right: 0;
}

.services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding: 120px 0;
}

.services-2 .service-item {
  padding: 5rem 3rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.services-2 h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 60px;
}

.services-2 .service-item:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services-2 .service-item:hover {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
}

.services-2 .service-item:first-child {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);

}

.services-2 .service-item:hover .arrow-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.services-2 .service-item:hover .service-number {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services-2 .service-item {
    padding: 1.5rem;
  }
}

.services-2 .service-title {
    display: flex;           
    align-items: center;     
    gap: 15px;              
}

.services-2 .service-title .service-number {
  margin-bottom: 0; 
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}

.services-2 .service-title h3 {
  margin-top: 0; 
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--heading-color);
}

.services-2 .service-content p {
  font-size: 18px;
  line-height: 36px;
}

@media (max-width: 991.98px) {
  .services-2 .service-title h3 {
    margin-bottom: 1rem;
  }
}

.services-2 .service-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 2;
}

.services-2 .service-link {
  display: flex;
  justify-content: flex-end;
}

.services-2 .service-link .arrow-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.services-2 .service-link .arrow-link i {
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-2 .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-2 .hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-2 .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
}

.hero-2 .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-2 .hero-text .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero-2 .hero-text .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-2 .hero-text .hero-title {
    font-size: 2.2rem;
  }
}

.hero-2 .hero-text .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 90%;
}

@media (max-width: 768px) {
  .hero-2 .hero-text .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
}

.hero-2 .hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 576px) {
  .hero-2 .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.hero-2 .hero-actions .btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .hero-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.hero-2 .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero-2 .hero-actions .btn-secondary i {
  font-size: 1.5rem;
}

.hero-2 .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero-2 .hero-stats {
  background-color: color-mix(in srgb, var(--backgorund-color), transparent 10%);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 3rem 2rem;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

@media (max-width: 992px) {
  .hero-2 .hero-stats {
    margin-top: 3rem;
  }
}

.hero-2 .hero-stats .stat-item {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-2 .hero-stats .stat-item:last-child {
  margin-bottom: 0;
}

.hero-2 .hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.hero-2 .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-2 .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-2 .scroll-indicator {
    display: none;
  }
}

.hero-2 .scroll-indicator .scroll-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-2 .scroll-indicator .scroll-arrow {
  animation: bounce 2s infinite;
}

.hero-2 .scroll-indicator .scroll-arrow i {
  font-size: 1.5rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# news Section
--------------------------------------------------------------*/
.news {
  position: relative;
  overflow: hidden;
  /* Decorative Background Shapes */
  /* Horizontal Filter Bar */
  /* Room Cards List */
  /* Room Image */
  /* Room Badge */
  /* Room Content */
  /* Star Ratings */
  /* Amenities */
  /* Room Footer (Price + Actions) */
  /* Bottom CTA Banner */
}

.news .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.news .decorative-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.news .decorative-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -100px;
  right: -100px;
}

.news .decorative-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  bottom: 200px;
  left: -80px;
}

.news .decorative-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  top: 50%;
  right: 10%;
}

.news .container {
  position: relative;
  z-index: 1;
}

.news .filter-bar {
  background: var(--surface-color);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.news .filter-bar .filter-bar-inner {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.news .filter-bar .filter-group {
  flex: 1;
  min-width: 180px;
}

.news .filter-bar .filter-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.news .filter-bar .filter-group label i {
  color: var(--accent-color);
  margin-right: 6px;
}

.news .filter-bar .filter-select {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  appearance: auto;
}

.news .filter-bar .filter-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.news .filter-bar .btn-search-rooms {
  padding: 14px 32px;
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
  color: var(--contrast-color);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.news .filter-bar .btn-search-rooms i {
  margin-right: 8px;
}

.news .filter-bar .btn-search-rooms:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 35%);
}

@media (max-width: 768px) {
  .news .filter-bar {
    padding: 20px;
  }

  .news .filter-bar .filter-bar-inner {
    flex-direction: column;
    gap: 16px;
  }

  .news .filter-bar .filter-group {
    min-width: 100%;
  }

  .news .filter-bar .btn-search-rooms {
    width: 100%;
    text-align: center;
  }
}

.news .rooms-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}

.news .room-card {
  background: var(--surface-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.news .room-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  /* background: linear-gradient(180deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 30%)); */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  border-radius: 16px 0 0 16px;
}

.news .room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--default-color), transparent 75%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.news .room-card:hover::before {
  opacity: 1;
}

.news .room-card:hover .room-image-wrapper img {
  transform: scale(1.08);
}

.news .room-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.news .room-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news .room-image-wrapper .image-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 20%), transparent);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 992px) {
  .news .room-image-wrapper {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .news .room-image-wrapper {
    min-height: 240px;
  }
}

.news .room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.news .room-badge.badge-popular {
  background: linear-gradient(135deg, #e67e22, #d35400);
  box-shadow: 0 4px 12px color-mix(in srgb, #e67e22, transparent 50%);
}

.news .room-badge.badge-exclusive {
  background: linear-gradient(135deg, #8e44ad, #6c3483);
  box-shadow: 0 4px 12px color-mix(in srgb, #8e44ad, transparent 50%);
}

.news .room-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.news .room-content .room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.news .room-content .room-title {
  font-size: 30px;
  font-weight: 500;
  color: #2b2b2b;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.6;
}

.news .room-content p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
  opacity: 0.85;
  color: #585858;
}

@media (max-width: 992px) {
  .news .room-content {
    padding: 24px 28px;
  }

  .news .room-content .room-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .news .room-content {
    padding: 20px 22px;
  }

  .news .room-content .room-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news .room-content .room-title {
    font-size: 20px;
  }
}

.news .room-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.news .room-rating i {
  color: #f59e0b;
  font-size: 16px;
}

.news .room-rating .rating-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-left: 8px;
  background: color-mix(in srgb, #f59e0b, transparent 88%);
  padding: 2px 10px;
  border-radius: 6px;
}

.news .room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .news .room-amenities {
    gap: 10px;
  }
}

.news .amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.news .amenity-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  flex-shrink: 0;
}

.news .amenity-item span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .news .amenity-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.news .room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .news .room-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.news .room-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.news .room-price .price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

@media (max-width: 992px) {
  .news .room-price .price-amount {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .news .room-price .price-amount {
    font-size: 26px;
  }
}

.news .room-price .price-period {
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news .room-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .news .room-actions {
    width: 100%;
  }
}

.news .btn-room-details {
  padding: 12px 24px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.news .btn-room-details:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 768px) {
  .news .btn-room-details {
    flex: 1;
  }
}

.news .btn-room-book {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 55%);
  text-align: center;
}

.news .btn-room-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 35%);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .news .btn-room-book {
    flex: 1;
  }
}

.news .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 30%));
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.news .cta-banner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 50%;
  top: -100px;
  right: -60px;
  pointer-events: none;
}

.news .cta-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--contrast-color), transparent 92%);
  border-radius: 50%;
  bottom: -80px;
  left: -40px;
  pointer-events: none;
}

.news .cta-banner .cta-content {
  position: relative;
  z-index: 1;
}

.news .cta-banner .cta-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.news .cta-banner .cta-text {
  font-size: 17px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.news .cta-banner .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, #000, transparent 70%);
}

.news .cta-banner .btn-cta i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.news .cta-banner .btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px color-mix(in srgb, #000, transparent 55%);
  color: var(--accent-color);
}

.news .cta-banner .btn-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .news .cta-banner {
    padding: 40px 28px;
  }

  .news .cta-banner .cta-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .news .cta-banner {
    padding: 32px 20px;
    border-radius: 14px;
  }

  .news .cta-banner .cta-title {
    font-size: 22px;
  }

  .news .cta-banner .cta-text {
    font-size: 15px;
  }

  .news .cta-banner .btn-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
/* 1. Section Wrapper */
.features-3.section {
  padding: 6rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.features-3.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(9, 107, 148, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(47, 162, 145, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.features-3.section > .container {
  position: relative;
  z-index: 1;
}

/* ===== H2 TITLE ===== */
.features-3.section > .container > h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #123a6b;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.features-3.section > .container > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
  border-radius: 2px;
}

/* ===== LAYOUT ALIGNMENT (关键修复：左右等高) ===== */
.features-3 .row {
  display: flex;           /* 确保启用Flex布局 */
  align-items: stretch;    /* 关键：拉伸子元素，使左右两列高度一致 */
}

.features-3 .col-md-8,
.features-3 .col-md-4 {
  display: flex;           /* 允许列内部元素也参与Flex布局 */
  flex-direction: column;  /* 垂直排列 */
}

/* ===== LEFT COLUMN: CONTENT WRAPPER ===== */
.features-3 .content-wrapper {
  line-height: 1.8;
  color: #4a5568;
  /* 移除之前的 padding-left，保持干净 */
}

/* Features Grid Layout */
.features-3 .content-wrapper .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  /* 即使左侧内容较少，也不需要拉伸grid本身，让它自然撑开高度即可 */
}

@media (min-width: 768px) {
  .features-3 .content-wrapper .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Feature Box Card */
.features-3 .content-wrapper .features-grid .feature-box {
  background: #ffffff;
  padding: 2.5rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(18, 58, 107, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top accent line on hover */
.features-3 .content-wrapper .features-grid .feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.features-3 .content-wrapper .features-grid .feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(18, 58, 107, 0.15);
  border-color: #cbd5e0;
}

.features-3 .content-wrapper .features-grid .feature-box:hover::before {
  opacity: 1;
}

/* Icon Wrapper */
.features-3 .content-wrapper .features-grid .feature-box .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 1.25rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(18, 58, 107, 0.2);
}

.features-3 .content-wrapper .features-grid .feature-box:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(18, 58, 107, 0.3);
}

/* Feature Content */
.features-3 .content-wrapper .features-grid .feature-box .feature-content h4 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #123a6b;
  letter-spacing: -0.01em;
}

.features-3 .content-wrapper .features-grid .feature-box .feature-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: #4a5568;
}

/* ===== RIGHT COLUMN: IMAGE WRAPPER (关键修复：填满高度 + 顶部对齐) ===== */
.features-3 .image-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(18, 58, 107, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* --- 核心对齐代码 --- */
  height: 100%;           /* 1. 强制高度填满父列，实现底部齐平 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 2. 内容从顶部开始，实现顶部对齐 */
  align-items: center;    /* 3. 图片水平居中 */
  /* ------------------- */
}

.features-3 .image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(18, 58, 107, 0.15);
  border-color: #096b94;
}

.features-3 .image-wrapper .main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
  .features-3.section {
    padding: 4rem 0;
  }

  .features-3.section > .container > h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .features-3 .content-wrapper {
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .features-3 .image-wrapper {
    padding: 1.5rem;
    /* 在平板上取消强制高度，恢复自然高度，或者保持强制高度视设计而定 */
    height: auto; 
  }

  .features-3 .image-wrapper:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767.98px) {
  .features-3.section > .container > h2 {
    font-size: 1.5rem;
  }

  .features-3 .content-wrapper .features-grid .feature-box {
    padding: 1.5rem;
  }

  .features-3 .content-wrapper .features-grid .feature-box .icon-wrapper {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .features-3 .content-wrapper .features-grid .feature-box .feature-content h4 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .service-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.cards .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cards .service-card:hover::before {
  transform: scaleX(1);
}

.cards .service-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.cards .service-card.featured::before {
  transform: scaleX(1);
}

.cards .service-card.featured .icon-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
}

.cards .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.cards .service-card .card-header {
  padding: 25px 25px 15px;
  text-align: center;
}

.cards .service-card .card-header .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 32px;
  transition: all 0.3s ease;
}

.cards .service-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.cards .service-card .card-body {
  padding: 0 25px 15px;
}

.cards .service-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  text-align: center;
}

.cards .service-card .card-body .feature-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.cards .service-card .card-body .feature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards .service-card .card-body .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cards .service-card:hover .feature-image::before {
  opacity: 1;
}

.cards .service-card:hover .feature-image img {
  transform: scale(1.1);
}

.cards .service-card .card-footer {
  padding: 15px 25px 25px;
}

.cards .service-card .card-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cards .service-card .card-footer .btn-explore i {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cards .service-card .card-footer .btn-explore:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards .service-card .card-footer .btn-explore:hover i {
  transform: translate(3px, -3px);
}

.cards .service-card.featured .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards .service-card.featured .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  border-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

@media (max-width: 768px) {
  .cards .service-card .card-header {
    padding: 20px 20px 10px;
  }

  .cards .service-card .card-header .icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .cards .service-card .card-header h4 {
    font-size: 16px;
  }

  .cards .service-card .card-body {
    padding: 0 20px 10px;
  }

  .cards .service-card .card-body .feature-image {
    height: 140px;
  }

  .cards .service-card .card-footer {
    padding: 10px 20px 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  border-radius: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.call-to-action .cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.call-to-action .cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .cta-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.call-to-action .cta-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.call-to-action .cta-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content .badge-custom {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.call-to-action .benefits-row {
  margin-top: 2rem;
}

.call-to-action .benefits-row .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.call-to-action .benefits-row .benefit-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.call-to-action .benefits-row .benefit-item .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.call-to-action .benefits-row .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.call-to-action .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.call-to-action .action-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
}

.call-to-action .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--accent-color);
}

.call-to-action .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.call-to-action .action-buttons .guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.call-to-action .action-buttons .guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .cta-image-container {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.call-to-action .cta-image-container .main-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
}

.call-to-action .cta-image-container .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.call-to-action .cta-image-container .floating-element i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.call-to-action .cta-image-container .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.call-to-action .cta-image-container .floating-element.element-1 {
  top: 20%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.call-to-action .cta-image-container .floating-element.element-2 {
  bottom: 25%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

.call-to-action .cta-image-container .pattern-dots {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 70px 0;
  }

  .call-to-action .row {
    flex-direction: column-reverse;
  }

  .call-to-action .cta-image-container {
    padding: 2rem;
    min-height: 350px;
  }

  .call-to-action .cta-image-container .floating-element.element-1 {
    top: 15%;
    left: 10%;
  }

  .call-to-action .cta-image-container .floating-element.element-2 {
    bottom: 15%;
    right: 10%;
  }

  .call-to-action .cta-content {
    padding: 2rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-to-action .action-buttons .btn {
    width: 100%;
  }

  .call-to-action .action-buttons .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 50px 0;
  }

  .call-to-action .cta-content {
    padding: 1.5rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.75rem;
  }

  .call-to-action .benefits-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-image-container {
    min-height: 300px;
  }

  .call-to-action .cta-image-container .floating-element {
    padding: 0.5rem 0.75rem;
  }

  .call-to-action .cta-image-container .floating-element span {
    font-size: 0.8rem;
  }

  .call-to-action .shape {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/

.contact-2 .contact-strips-row .contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background-color: var(--surface-color);
  border-left: 2px solid #326949;
  border-radius: 0 8px 8px 0;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact-2 .contact-strips-row {
  margin-bottom: 60px;
}

.contact-2 .contact-strips-row h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 60px;
}

.contact-2 .contact-strips-row .contact-strip:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 22px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact-2 .contact-strips-row .contact-strip .strip-icon-box {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-strips-row .contact-strip i {
  font-size: 22px;
  margin-right: 10px;
  color: #317251;
  font-weight: 700;
}

.contact-2 .contact-strips-row .contact-strip .strip-icon-box i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact-2 .contact-strips-row .contact-strip .strip-text {
  flex: 1;
}

.contact-2 .contact-strips-row .contact-strip .strip-text .strip-quyu {
  display: block;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #000;
  margin-bottom: 25px;
}

.contact-2 .contact-strips-row .contact-strip .strip-text .strip-label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #515151;
  margin-bottom: 15px;
}

.contact-2 .contact-strips-row .contact-strip .strip-text .strip-value {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #515151;
  line-height: 1.5;
}

.contact-2 .inquiry-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 87%);
}

.contact-2 .inquiry-card .card-intro-panel {
  background-color: var(--accent-color);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
}

.contact-2 .inquiry-card .card-intro-panel .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 82%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 32px;
  width: fit-content;
}

.contact-2 .inquiry-card .card-intro-panel .intro-badge i {
  font-size: 14px;
}

.contact-2 .inquiry-card .card-intro-panel h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-2 .inquiry-card .card-intro-panel p {
  font-size: 14px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
  flex: 1;
  margin: 0;
}

.contact-2 .inquiry-card .card-intro-panel .intro-divider {
  height: 1px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 72%);
  margin: 32px 0;
}

.contact-2 .inquiry-card .card-intro-panel .intro-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-2 .inquiry-card .card-intro-panel .intro-note i {
  font-size: 15px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-2 .inquiry-card .card-intro-panel .intro-note span {
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
}

.contact-2 .inquiry-card .card-form-panel {
  background-color: var(--surface-color);
  padding: 52px 48px;
}

.contact-2 .inquiry-card .card-form-panel .field-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  margin-bottom: 10px;
}

.contact-2 .inquiry-card .card-form-panel .field-wrap input[type=text],
.contact-2 .inquiry-card .card-form-panel .field-wrap input[type=email],
.contact-2 .inquiry-card .card-form-panel .field-wrap textarea {
  width: 100%;
  background-color: var(--surface-color);
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  padding: 10px 0 12px;
  font-size: 15px;
  color: var(--default-color);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-2 .inquiry-card .card-form-panel .field-wrap input[type=text]:focus,
.contact-2 .inquiry-card .card-form-panel .field-wrap input[type=email]:focus,
.contact-2 .inquiry-card .card-form-panel .field-wrap textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  box-shadow: none;
}

.contact-2 .inquiry-card .card-form-panel .field-wrap input[type=text]::placeholder,
.contact-2 .inquiry-card .card-form-panel .field-wrap input[type=email]::placeholder,
.contact-2 .inquiry-card .card-form-panel .field-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact-2 .inquiry-card .card-form-panel .field-wrap textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.contact-2 .inquiry-card .card-form-panel .form-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.contact-2 .inquiry-card .card-form-panel .btn-dispatch {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-2 .inquiry-card .card-form-panel .btn-dispatch i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.contact-2 .inquiry-card .card-form-panel .btn-dispatch:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.contact-2 .inquiry-card .card-form-panel .btn-dispatch:hover i {
  transform: translateX(3px) translateY(-3px);
}

@media (max-width: 992px) {
  .contact-2 .inquiry-card .card-intro-panel {
    padding: 40px 32px;
  }

  .contact-2 .inquiry-card .card-intro-panel h3 {
    font-size: 22px;
  }

  .contact-2 .inquiry-card .card-form-panel {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .contact-2 .contact-strips-row .contact-strip:hover {
    transform: none;
  }

  .contact-2 .inquiry-card .card-intro-panel {
    padding: 32px 24px;
  }

  .contact-2 .inquiry-card .card-form-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 576px) {
  .contact-2 .inquiry-card .card-intro-panel {
    padding: 28px 20px;
  }

  .contact-2 .inquiry-card .card-intro-panel h3 {
    font-size: 20px;
  }

  .contact-2 .inquiry-card .card-form-panel {
    padding: 28px 20px;
  }

  .contact-2 .inquiry-card .card-form-panel .field-wrap input[type=text],
  .contact-2 .inquiry-card .card-form-panel .field-wrap input[type=email],
  .contact-2 .inquiry-card .card-form-panel .field-wrap textarea {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Case Studies 独立作用域
--------------------------------------------------------------*/
.cs-study-section {
  --cs-primary: #123a6b;
  --cs-secondary: #2fa291;
  --cs-gradient: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
  --cs-text-dark: #1a1a2e;
  --cs-text-muted: #6c757d;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.cs-header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  /* 确保层级 */
  z-index: 5;
}

.cs-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--cs-text-dark);
  line-height: 1.2;
}

.cs-title::before {
  content: '///';
  color: #145d7d;
  margin-right: 15px;
  font-weight: 100;
}

.cs-subtitle {
  font-size: 18px;
  color: var(--cs-text-muted);
  max-width: 550px;
  text-align: right;
  line-height: 1.6;
}

/* 2. 控制栏 (左右分布) */
.cs-controls-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 96px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  padding: 0 12% 0 0;
}

/* 左侧：进度条组 */
.cs-indicators-group {
  display: flex;
  align-items: center;
}

.cs-progress-item {
  width: 220px;
  height: 2px;
  background: #e0e0e0;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.cs-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--cs-gradient);
}

.cs-progress-item.active .cs-progress-fill {
  animation: csLoad 6s linear forwards;
}

.cs-progress-item.completed .cs-progress-fill {
  width: 100%;
  animation: none;
}

@keyframes csLoad {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.cs-dot {
  width: 10px;
  height: 10px;
  background: #e0e0e0;
  border-radius: 50%;
  margin: 0 15px;
  transition: all 0.3s;
}

.cs-dot.active {
  background: var(--cs-secondary);
  transform: scale(1.2);
  width: 12px;
  height: 12px;

}

/* 右侧：箭头组 */
.cs-arrows-group {
  display: flex;
  gap: 15px;
}

.cs-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.cs-nav-btn:hover {
  border-color: var(--cs-primary);
  background: var(--cs-primary);
  color: #fff;
}

.cs-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* 3. 内容布局区域 */
.cs-content-area {
  position: relative;
  width: 100%;
  min-height: 600px;
}

/* 右侧背景大图 */
.cs-bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  z-index: 1;
}

.cs-bg-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s;
}

.cs-bg-image.active {
  opacity: 1;
}

.cs-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-img-num {
  position: absolute;
  top: -40px;
  right: 250px;
  font-size: 140px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: 'Playfair Display', serif;
}

/* 左侧文字卡片 (绝对定位，不受Container限制，上移) */
.cs-card-layer {
  position: absolute;
  top: -80px;
  left: 0;
  width: 60%;
  z-index: 10;
}

.cs-card-box {
  background: var(--cs-gradient);
  padding: 50px;
  box-shadow: 0 30px 60px rgba(18, 58, 107, 0.3);
  position: relative;
  overflow: hidden;
  display: none;
  padding-left: 18%;
}

.cs-card-box.active {
  display: block;
  animation: csSlideIn 0.5s ease;
}

@keyframes csSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 卡片内部元素 */
.cs-card-bg-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 160px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cs-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  margin-top: 50px;
}

.cs-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.cs-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cs-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.cs-meta-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.cs-meta-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cs-meta-val {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.cs-card-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.cs-card-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(3px, 3px);
}

.cs-card-btn svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* 响应式 */
@media (max-width: 1200px) {
  .cs-card-layer {
    width: 55%;
  }
}

@media (max-width: 992px) {
  .cs-controls-wrapper {
    padding: 0 5%;
  }

  .cs-indicators-group {
    order: 2;
  }

  /* 移动端顺序调整 */
  .cs-arrows-group {
    order: 1;
    margin-right: auto;
  }

  .cs-content-area {
    min-height: auto;
  }

  .cs-bg-layer {
    position: relative;
    width: 100%;
    height: 230px;
    margin-top: 50px;
  }

  .cs-card-layer {
    position: relative;
    top: auto;
    left: auto;
    width: 90%;
    margin: -80px auto 0;
    /* 叠加在图片上 */
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .cs-title {
    font-size: 30px;
  }

  .cs-subtitle {
    font-size: 12px;
    max-width: 180px;
  }
  .cs-study-section{
    padding-bottom: 40px;
  }

  .cs-card-box {
    padding: 30px;
  }

  .cs-heading {
    font-size: 24px;
  }

  .cs-meta-grid {
    grid-template-columns: 1fr;
  }

  .cs-img-num {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 90px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-family: 'Playfair Display', serif;
  }
}

/*--------------------------------------------------------------
# Post List Section
--------------------------------------------------------------*/
.post-list{
  background: #f8f9fa;
}

.post-list article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.post-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.post-list .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.post-list .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.post-list .title a:hover {
  color: var(--accent-color);
}

.post-list .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.post-list .meta-top ul li+li {
  padding-left: 20px;
}

.post-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.post-list .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.post-list .content {
  margin-top: 20px;
}

.post-list .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.post-list .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*--------------------------------------------------------------
# Post Details Section
--------------------------------------------------------------*/
.post-details {
  max-width: 1400px;
  margin: 0 auto;
}

.post-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.post-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.post-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.post-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.post-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .post-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.post-details .article-content {
  padding: 0 1rem;
}

.post-details .article-content .content-header {
  margin-bottom: 3rem;
}

.post-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .post-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.post-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.post-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.post-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.post-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.post-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.post-details .article-content .content {
  font-size: 18px;
  line-height: 2.2;
  color: #5b5b5b;
}

.post-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.post-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.post-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.post-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.post-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.post-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .post-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.post-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.post-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.post-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.post-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.post-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.post-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.post-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.post-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.post-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.post-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.post-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.post-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.post-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.post-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.post-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.post-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.post-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.post-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.post-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.post-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.post-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Case Section
--------------------------------------------------------------*/
.case.section {
    padding: 6rem 0;
    background-color: #f7fafc;
    position: relative;
  }

  .case .rooms-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .case .room-image-wrapper{
  position: relative;
  padding: 1.5rem;
  background:#f7f7f7;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(18,58,107,.08);
}

.case .room-image-wrapper:hover{
  background: #d9e1eb;
  transform:translateY(-6px);
  box-shadow:0 18px 38px rgba(0,0,0,.12);
}

.case .room-image-wrapper img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .6s ease;
}

.case .room-image-wrapper:hover img{
  transform:scale(1.02);
}

  .case .room-content {
    background: #ffffff;
    padding: 3rem 3.5rem;
    height: 100%;
    box-shadow: 0 4px 16px rgba(18, 58, 107, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

.case .room-content {
  background: #ffffff;
  padding: 3rem 3.5rem;
  height: 100%;
  box-shadow: 0 4px 16px rgba(18, 58, 107, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.case .room-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  aspect-ratio: 2 / 1;
  background-image: url('../img/5ff455610eb91d7.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.case .room-content > * {
  position: relative;
  z-index: 1;
}

  .case .room-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(18, 58, 107, 0.12);
  }

  .case .room-content .room-header {
    margin-bottom: 1.75rem;
  }

  .case .room-content .room-title {
    font-size: 2rem;
    font-weight: 700;
    color: #123a6b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
    position: relative;
    display: inline-block;
    padding-bottom: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .case .room-content .room-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2fa291, #096b94);
    border-radius: 2px;
    transition: width 0.4s ease;
  }

  .case .room-content .room-header:hover .room-title::after {
    width: 90px;
  }

  .case .room-content .room-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }

  .case .room-content .room-title a:hover {
    color: #096b94;
  }

  .case .room-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 0;
  }

  .btn-explore-case {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.25rem;
    background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    align-self: flex-end;
    margin-top: auto;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(18, 58, 107, 0.25);
  }

  .btn-explore-case i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
  }

  .btn-explore-case:hover {
    transform: translateY(-3px) translateX(5px);
    box-shadow: 0 8px 28px rgba(18, 58, 107, 0.35);
    color: #ffffff;
  }

  .btn-explore-case:hover i {
    transform: translateX(4px);
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 991.98px) {
    .case.section {
      padding: 4rem 0;
    }

    .case .rooms-list {
      gap: 3rem;
    }

    .case .room-image-wrapper {
      padding: 1.25rem;
      margin-bottom: 2rem;
    }

    .case .room-image-wrapper:hover {
      transform: translateY(-4px);
    }

    .case .room-content {
      padding: 2.5rem 2rem;
    }

    .case .room-content:hover {
      transform: translateY(-4px);
    }

    .case .room-content .room-title {
      font-size: 1.65rem;
    }

    .case .room-content p {
      font-size: 1rem;
    }
  }

  @media (max-width: 767.98px) {
    .case .rooms-list {
      gap: 2.5rem;
    }

    .case .room-image-wrapper {
      padding: 1rem;
    }

    .case .room-content {
      padding: 2rem 1.5rem;
    }

    .case .room-content .room-title {
      font-size: 1.45rem;
    }

    .btn-explore-case {
      padding: 0.85rem 2rem;
      font-size: 0.95rem;
    }
  }

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding: 100px 0;
}
.about-2 .section-title{
  margin-bottom: 0;
}

.about-2 .section-title::before {
    content: '///';
    margin-right: 15px;
    color: #186974;
    font-weight: 100;
    font-size: 42px;
    letter-spacing: 1px;
    margin-top: 2px;
}

.about-2 .section-title h2{
  margin-top: -28px;
}

.about-2 .content-wrapper .tagline {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-2 .content-wrapper h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 24px;
  color: #414141;
}

.about-2 .content-wrapper .intro {
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  color: var(--default-color);
  margin-bottom: 16px;
}

.about-2 .content-wrapper p {
  font-size: 17px;
  line-height: 2.1;
  color: var(--default-color);
  margin-bottom: 32px;
}

.about-2 .content-wrapper .stats-grid {
  margin-bottom: 32px;
}

.about-2 .content-wrapper .stats-grid .stat-box {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: all 0.3s ease;
}

.about-2 .content-wrapper .stats-grid .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-2 .content-wrapper .stats-grid .stat-box .purecounter {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-color);
}

.about-2 .content-wrapper .stats-grid .stat-box .suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.about-2 .content-wrapper .stats-grid .stat-box p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin: 8px 0 0 0;
}

.about-2 .content-wrapper .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  min-width: 120px;
  min-height: 44px;
  transition: all 0.3s ease;
}

.about-2 .content-wrapper .btn-discover i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about-2 .content-wrapper .btn-discover:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-2 .content-wrapper .btn-discover:hover i {
  transform: translateX(4px);
}

.about-2 .image-stack {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.about-2 .image-stack .image-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  margin: 0;
}

.about-2 .image-stack .image-primary img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-2 .image-stack .image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  margin: 0;
}

.about-2 .image-stack .image-secondary img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--background-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-2 .image-stack .experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px;
  border-radius: 50%;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about-2 .image-stack .experience-badge i {
  font-size: 24px;
  margin-bottom: 4px;
}

.about-2 .image-stack .experience-badge span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.about-2 .image-stack .experience-badge p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-2 .highlights-bar {
  margin-top: 120px;
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
  border-radius: 8px;
  overflow: hidden;
}

.about-2 .highlights-bar .highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 42px 24px;
  border-right: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  transition: all 0.3s ease;
  height: 100%;
}

.about-2 .highlights-bar .highlight-item:hover {
  background: linear-gradient(
  to left,
  rgba(18,58,107,0.55),
  rgba(9,107,148,0.65),
  rgba(47,162,145,0.75)
);
}

.about-2 .highlights-bar .highlight-item i {
  font-size: 36px;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.about-2 .highlights-bar .highlight-item .highlight-text h4 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 12px;
}

.about-2 .highlights-bar .highlight-item .highlight-text p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--contrast-color) 90%, transparent);
  margin: 0;
}

@media (max-width: 991px) {
  .about-2 .content-wrapper {
    margin-bottom: 48px;
  }

  .about-2 .content-wrapper h3 {
    font-size: 28px;
  }

  .about-2 .image-stack {
    min-height: 450px;
  }

  .about-2 .image-stack .image-primary {
    width: 100%;
  }

  .about-2 .image-stack .image-secondary {
    width: 65%;
  }

  .about-2 .image-stack .image-secondary img {
    height: 240px;
  }

  .about-2 .image-stack .experience-badge {
    width: 100px;
    height: 100px;
    padding: 16px;
  }

  .about-2 .image-stack .experience-badge i {
    font-size: 20px;
  }

  .about-2 .image-stack .experience-badge span {
    font-size: 16px;
  }

  .about-2 .image-stack .experience-badge p {
    font-size: 10px;
  }

  .about-2 .highlights-bar {
    margin-top: 64px;
  }

  .about-2 .highlights-bar .highlight-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }

  .about-2 .highlights-bar .highlight-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .about-2 .highlights-bar .row>[class*=col-]:nth-child(odd) .highlight-item {
    border-right: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }

  .about-2 .highlights-bar .row>[class*=col-]:nth-child(3) .highlight-item,
  .about-2 .highlights-bar .row>[class*=col-]:nth-child(4) .highlight-item {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .about-2 {
    padding: 48px 0;
  }

  .about-2 .content-wrapper .tagline {
    font-size: 12px;
  }

  .about-2 .content-wrapper h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
  }

  .about-2 .content-wrapper .intro {
    font-size: 16px;
  }

  .about-2 .content-wrapper .stats-grid .stat-box {
    padding: 16px 8px;
  }

  .about-2 .content-wrapper .stats-grid .stat-box .purecounter {
    font-size: 28px;
  }

  .about-2 .content-wrapper .stats-grid .stat-box .suffix {
    font-size: 18px;
  }

  .about-2 .content-wrapper .stats-grid .stat-box p {
    font-size: 12px;
  }

  .about-2 .content-wrapper .btn-discover {
    width: 100%;
    justify-content: center;
  }

  .about-2 .image-stack .image-primary {
    width:100%;
  }

  .about-2 .image-stack .image-secondary {
    width: 60%;
  }

  .about-2 .image-stack .image-secondary img {
    height: 200px;
    border-width: 4px;
  }

  .about-2 .image-stack .experience-badge {
    width: 90px;
    height: 90px;
    padding: 12px;
  }

  .about-2 .image-stack .experience-badge i {
    font-size: 18px;
  }

  .about-2 .image-stack .experience-badge span {
    font-size: 14px;
  }

  .about-2 .image-stack .experience-badge p {
    font-size: 9px;
  }

  .about-2 .highlights-bar {
    margin-top: 48px;
  }

  .about-2 .highlights-bar .highlight-item {
    padding: 24px 16px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
    border-right: none !important;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  }

  .about-2 .highlights-bar .highlight-item{
    padding: 40px 25px;
  }

  .about-2 .highlights-bar .highlight-item:last-child {
    border-bottom: none;
  }

  .about-2 .highlights-bar .highlight-item i {
    font-size: 32px;
  }

  .about-2 .highlights-bar .highlight-item .highlight-text h4 {
    font-size: 22px;
  }

  .about-2 .highlights-bar .highlight-item .highlight-text p {
    font-size: 16px;
  }
}

/* ========== product-categories 背景层 ========== */
.product-categories {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: url('../img/probg.webp') center/cover no-repeat;
  background-color: #1a1a2e;
  min-height: 750px;
}

.product-categories::before {
  content: '';
  position: absolute;
  inset: 0;

  z-index: 1;
}

.cat-row {
  position: relative;
  z-index: 2;
  min-height: 750px;
}

.cat-col {
  position: relative;
  text-align: center;
  padding: 56px 32px;
  border-right: 1px solid rgba(70, 70, 70, 0.12);
  overflow: hidden;
  cursor: pointer;
}

.cat-col:last-child {
  border-right: none;
}

/* ========== hover 背景层 ========== */
.cat-col-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.cat-col:hover .cat-col-bg {
  opacity: 1;
}

/* 产品图片 —— 最底层 */
.cat-col-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* 渐变遮罩 —— 盖在图片上面，50%透明 */
.cat-col-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291, #70b061);
  opacity: 0.7;
}

.cat-col-inner {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.cat-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgb(80, 166, 122);
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.06);
}

.cat-icon-wrap svg {
  width: 34px;
  height: 34px;
  stroke: rgb(80, 166, 122);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.5s ease;
}

.cat-col:hover .cat-icon-wrap {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.cat-col:hover .cat-icon-wrap svg {
  stroke: #fff;
}

.cat-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.cat-col:hover .cat-title {
  color: #fff;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  padding: 10px 0;
  font-size: 1.2rem;
  color: rgba(53, 53, 53, 0.7);
  cursor: pointer;
  transition: color 0.4s ease;
}

.cat-list li a{
  padding: 10px 0;
  font-size: 1.2rem;
  color: rgba(53, 53, 53, 0.7);
  cursor: pointer;
  transition: color 0.4s ease;
}

.cat-list li a:hover{
  padding: 10px 0;
  font-size: 1.2rem;
  color:#fff;
  cursor: pointer;
  transition: color 0.4s ease;
}

.cat-list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  margin-right: 8px;
  vertical-align: middle;
  transition: background 0.4s ease;
}

.cat-col:hover .cat-list li a{
  color: rgba(255, 255, 255, 0.95);
}

.cat-col:hover .cat-list li::before {
  background: rgba(255, 255, 255, 0.7);
}

.cat-list li:hover {
  text-decoration: underline;
}

.float-sidebar {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-sidebar a,
.float-sidebar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #123a6b;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.float-sidebar a:hover,
.float-sidebar button:hover {
  background: #096b94;
}

.float-sidebar .sidebar-label {
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.qr-popup {
  position: absolute;
  right: 52px;
  top: 0;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  white-space: nowrap;
}

.qr-popup img {
  width: 120px;
  height: 120px;
  display: block;
}

.qr-trigger:hover .qr-popup {
  display: block;
}

.float-sidebar .btn-top {
  background: #2fa291;
}

.float-sidebar .btn-top:hover {
  background: #70b061;
}

@media (max-width: 767.98px) {
  .cat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 20px;
  }

  .cat-col:last-child {
    border-bottom: none;
  }

  .float-sidebar {
    right: 8px;
  }

  .float-sidebar a,
  .float-sidebar button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Productlist Section
--------------------------------------------------------------*/
 .productlist.section {
    padding: 6rem 0;
    background-color: #f7fafc;
    position: relative;
  }

  /* ===== ROOMS LIST ===== */
  .productlist .rooms-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  /* ===== ROOM CARD 容器 ===== */
  .productlist .room-card {
    position: relative;
  }

  /* 交替布局 */
  .productlist .room-card:nth-child(even) .row {
    flex-direction: row-reverse;
  }

  /* ===== LEFT: IMAGE CARD (带边框和内边距) ===== */
  .productlist .room-image-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem; /* 图片边距 */
    border: 2px solid #e2e8f0; /* 图片边框 */
    box-shadow: 0 8px 24px rgba(18, 58, 107, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  .productlist .room-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(18, 58, 107, 0.15);
    border-color: #b2c8d2;
  }

  .productlist .room-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s ease;
  }

  .productlist .room-image-wrapper:hover img {
    transform: scale(1.03);
  }

  .productlist .room-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 58, 107, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .productlist .room-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 250px;
    background-image: url('http://en.e-magegroup.com/uploadfile/202603/86bd4dfd34baaf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
  }

  .productlist .room-content > * {
    position: relative;
    z-index: 1;
  }

  .productlist .room-content .room-header {
    margin-bottom: 1.5rem;
  }

  .productlist .room-content .room-title {
    font-size: 2rem;
    font-weight: 700;
    color: #123a6b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .productlist .room-content .room-title a {
    text-decoration: none;
    color: inherit;
  }

  .productlist .room-content .room-title a:hover {
    color: #096b94;
  }

  /* 描述文字 */
  .productlist .room-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  /* ===== EXPLORE MORE 按钮 ===== */
  .btn-explore-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(18, 58, 107, 0.2);
    align-self: flex-start;
    margin-top: auto; /* 推到底部 */
  }

  .btn-explore-more i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }

  .btn-explore-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(18, 58, 107, 0.3);
    color: #ffffff;
  }

  .btn-explore-more:hover i {
    transform: translateX(5px);
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 991.98px) {
    .productlist.section {
      padding: 4rem 0;
    }

    .productlist .rooms-list {
      gap: 3rem;
    }

    /* 移动端取消交替布局 */
    .productlist .room-card:nth-child(even) .row {
      flex-direction: row;
    }

    .productlist .room-image-wrapper {
      padding: 1.25rem;
      margin-bottom: 2rem;
    }

    .productlist .room-image-wrapper:hover {
      transform: translateY(-5px);
    }

    .productlist .room-content {
      padding: 2.5rem 2rem;
    }

    .productlist .room-content::before {
      width: 300px;
      height: 150px;
    }

    .productlist .room-content .room-title {
      font-size: 1.55rem;
    }

    .productlist .room-content p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 767.98px) {
    .productlist .rooms-list {
      gap: 2.5rem;
    }

    .productlist .room-image-wrapper {
      padding: 1rem;
    }

    .productlist .room-content {
      padding: 2rem 1.5rem;
    }

    .productlist .room-content .room-title {
      font-size: 1.5rem;
    }

    .btn-explore-more {
      padding: 0.8rem 1.75rem;
      font-size: 0.95rem;
    }
  }

/* ========== 产品头部 ========== */
.product-hero {
  background: #fff;
  border-bottom: 1px solid #e2e5ea;
}

.product-image-box {
  background: #fff;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-image-box:hover img {
  transform: scale(1.04);
}

.product-right {
  padding: 44px 40px 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2563eb;
  background: #eff4ff;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}

.product-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #005bac;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

/* .product-title::before {
    content: '—';
    color: #005bac;
    margin-right: 8px;
    font-weight: 400;
} */

.product-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #5a6070;
  margin-bottom: 28px;
}

.product-right p{
  font-size: 17px;
  line-height: 30px;
  color: #535353;
}

.product-desc strong {
  color: #1a1d26;
  font-weight: 600;
}

/* Inquiry 按钮 */
.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  width: fit-content;
}

.btn-inquiry:hover {
  color: #fff;
  box-shadow: 0 4px 18px rgba(9, 107, 148, 0.35);
  transform: translateY(-1px);
}

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

/* ========== Tab ========== */
.tab-section {
  background: #f5f8fa;
  padding: 0 0 48px;
}

.p-tabs {
  border: none;
  border-bottom: none;
  margin-bottom: 0;
  gap: 0;
  background: #fff;
}

.p-tabs .nav-link {
  border: none;
  border-top: 2px solid transparent;
  border-radius: 0;
  color: #8b919e;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 25px 24px;
  background: transparent;
  transition: all 0.36s;
}

.p-tabs .nav-link:hover {
  color: #005bac;
  background-color: #f5f8fa;
}

.p-tabs .nav-link.active {
  color: #005bac;
  background-color: #eff2f7;
  border-top: 2px solid #005bac;
  font-weight: 600;
}

.tab-content {
  background: #f5f8fa;
  padding-top: 28px;
}

.tab-pane {
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Product advantages 纯文字 ===== */
.adv-text-content {
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  padding: 32px 36px;
}

.adv-text-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1d26;
  margin-bottom: 16px;
}

.adv-text-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5a6070;
  margin-bottom: 16px;
}

.adv-text-content p:last-child {
  margin-bottom: 0;
}

.adv-text-content strong {
  color: #1a1d26;
  font-weight: 600;
}

.adv-highlight {
  background: #eff2f7;
  border-left: 3px solid #005bac;
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin-top: 20px;
}

.adv-highlight p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* ===== 案例展示 ===== */
.case-card {
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
}

.case-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.case-img {
  height: 200px;
  background: linear-gradient(135deg, #1b2040 0%, #2a3670 60%, #1b2040 100%);
  position: relative;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.35));
}

.case-badges {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.case-badges span {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.case-body {
  padding: 20px 22px 22px;
}

.case-body h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1d26;
  margin-bottom: 14px;
  line-height: 1.45;
}

.case-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
}

.case-stats .cs-item {
  text-align: center;
}

.case-stats .cs-val {
  font-size: 1.08rem;
  font-weight: 700;
  color: #005bac;
  display: block;
  line-height: 1.3;
}

.case-stats .cs-lbl {
  font-size: 0.7rem;
  color: #9ca3af;
}

.case-body .case-desc {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 14px;
}

.case-link {
  font-size: 1rem;
  font-weight: 600;
  color: #005bac;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  margin-top: 30px;
}

.case-link:hover {
  gap: 8px;
}

.case-sm {
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  padding: 18px 20px;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.case-sm:last-child {
  margin-bottom: 0;
}

.case-sm:hover {
  border-color: #005bac;
  box-shadow: 0 3px 12px rgba(0, 91, 172, 0.05);
}

.case-sm h6 {
  font-size: 0.93rem;
  font-weight: 600;
  color: #1a1d26;
  margin-bottom: 8px;
}

.case-sm .case-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ===== 客户评价 ===== */
.voice-card {
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
  position: relative;
}

.voice-card .q-icon {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  color: rgba(0, 91, 172, 0.06);
  line-height: 1;
}

.voice-card .stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.voice-card .v-text {
  font-size: 0.86rem;
  color: #4b5161;
  line-height: 1.85;
  margin-bottom: 14px;
  font-style: italic;
}

.voice-card .v-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-card .v-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #005bac;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
}

.voice-card .v-name {
  font-weight: 600;
  font-size: 0.83rem;
  color: #1a1d26;
}

.voice-card .v-role {
  font-size: 0.73rem;
  color: #9ca3af;
}

/* ===== 资料下载 ===== */
.dl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.dl-item:hover {
  border-color: #005bac;
  background: #eff2f7;
}

.dl-item .dl-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.dl-item .dl-ic.pdf {
  background: #fef2f2;
  color: #ef4444;
}

.dl-item .dl-ic.doc {
  background: #eff6ff;
  color: #3b82f6;
}

.dl-item .dl-ic.cad {
  background: #f0fdf4;
  color: #22c55e;
}

.dl-item .dl-ic.zip {
  background: #fefce8;
  color: #eab308;
}

.dl-item .dl-info {
  flex: 1;
}

.dl-item .dl-name {
  font-weight: 600;
  font-size: 0.86rem;
  color: #1a1d26;
}

.dl-item .dl-meta {
  font-size: 0.73rem;
  color: #9ca3af;
}

.dl-item .dl-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: #005bac;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.dl-item:hover .dl-btn {
  opacity: 1;
}

/* ===== 询盘弹窗 ===== */
.inquiry-modal .modal-content {
  border: none;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.inquiry-modal .modal-header {
  border-bottom: 1px solid #e8eaed;
  padding: 20px 24px;
}

.inquiry-modal .modal-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1d26;
}

.inquiry-modal .modal-body {
  padding: 24px;
}

.inquiry-modal .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3a3f4b;
  margin-bottom: 5px;
}

.inquiry-modal .form-control,
.inquiry-modal .form-select {
  font-size: 0.88rem;
  border-radius: 7px;
  border-color: #dde0e6;
  padding: 9px 13px;
}

.inquiry-modal .form-control:focus,
.inquiry-modal .form-select:focus {
  border-color: #005bac;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}

.btn-submit {
  background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
}

.btn-submit:hover {
  color: #fff;
  box-shadow: 0 4px 14px rgba(9, 107, 148, 0.3);
}

.inquiry-modal .btn-close {
  box-shadow: none;
}

.toast-custom {
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767.98px) {
  .product-image-box {
    min-height: 260px;
  }

  .product-right {
    padding: 28px 20px;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .p-tabs .nav-link {
    font-size: 1rem;
    padding: 11px 14px;
  }

  .case-stats {
    gap: 14px;
  }

  .btn-inquiry {
    padding: 11px 28px;
    font-size: 0.88rem;
  }

  .adv-text-content {
    padding: 24px 20px;
  }
}

/* ===== 替换原来的 .case-sm 样式 ===== */
.case-sm {
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
}

.case-sm:last-child {
  margin-bottom: 0;
}

.case-sm:hover {
  border-color: #005bac;
  box-shadow: 0 3px 12px rgba(0, 91, 172, 0.05);
}

.case-sm .case-sm-img {
  width: 500px;
  min-width: 500px;
  height: auto;
  object-fit: cover;
}

.case-sm .case-sm-body {
  padding: 18px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.case-sm h6 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1d26;
  margin-bottom: 18px;
}

.case-sm .case-desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 8px;
}

@media (max-width: 767.98px) {
  .case-sm {
    flex-direction: column;
  }

  .case-sm .case-sm-img {
    width: 100%;
    min-width: unset;
    height: 160px;
  }

  .case-sm .case-sm-body {
    padding: 18px 15px;
  }
}

/* 弹窗 */
.inquiry-modal .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.inquiry-modal .modal-body {
    padding: 0;
}

.inquiry-modal .form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4b5161;
    margin-bottom: 4px;
}

.inquiry-modal .form-control {
    font-size: 0.85rem;
    border-radius: 6px;
    border-color: #dde0e6;
    padding: 8px 12px;
    background: #f9fafb;
}

.inquiry-modal .form-control:focus {
    border-color: #096b94;
    box-shadow: 0 0 0 3px rgba(9, 107, 148, 0.08);
    background: #fff;
}

.inquiry-modal textarea.form-control {
    resize: none;
}

/* 验证码图片 */
.captcha-img img {
    height: 35px;
    border-radius: 5px;
    border: 1px solid #dde0e6;
    display: block;
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(to right, #123a6b, #096b94, #2fa291);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.25s;
}

.btn-submit:hover {
    color: #fff;
    box-shadow: 0 4px 16px rgba(9, 107, 148, 0.35);
    transform: translateY(-1px);
}

.inquiry-modal .btn-close {
    box-shadow: none;
}

/* ========== Global Business Map ========== */
.global-map-section {
    background: #fff;
    padding: 0;
    margin-top: 80px;
}

.global-map-wrap {
    position: relative;
}

.global-map-img {
    position: relative;
}

.global-map-img img {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 120px;
}

/* --- 合并后的头部样式 (关键修改) --- */
.global-map-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between; /* 保持标题在左，描述在右 */
    align-items: flex-end;           /* 【关键修改】：强制底部对齐，替换了原本的 flex-start */
    /* padding-top: 40px;  如果觉得太顶天，可以取消注释这行增加间距 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 60%, transparent);
}

.global-map-title,
.global-map-desc {
    margin-bottom: 0;
}

.global-map-title h2 {
  font-size: 44px;
  font-weight: 700;
  padding: 0;
  line-height: 1px; /* 保持原有的行高设置 */
  margin: 0;
  margin-top: 0px;
  position: relative;
  text-indent: 80px;
  margin-top: -26px;
}

.global-map-title::before {
  content: '///';
  margin-right: 15px;
  color: #186974;
  font-weight: 100;
  font-size: 42px;
  letter-spacing: 1px;
}

.global-map-desc {
    font-size: 1rem;
    color: #8b919e;
    margin: 0;
    max-width: 640px;
    text-align: right;
    margin-bottom:-20px;
    line-height: 1.4;
    padding-bottom: 2px;
}

/* SVG叠加层 */
.global-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 标签填充色 */
.tag-sub { fill: #096b94; opacity: 0.9; }
.tag-fac { fill: #e67e22; opacity: 0.9; }

/* 底部图例 */
.global-map-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 16px 40px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fff;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
}

.legend-dot-hq {
    border-radius: 50%;
    background: #e53e3e;
    box-shadow: 0 0 6px rgba(229, 62, 62, 0.3);
}

.legend-dot-sub {
    border-radius: 50%;
    background: #096b94;
    box-shadow: 0 0 6px rgba(9, 107, 148, 0.25);
}

.legend-dot-fac {
    background: #e67e22;
    transform: rotate(45deg);
    border-radius: 1.5px;
    box-shadow: 0 0 6px rgba(230, 126, 34, 0.25);
}

.legend-line {
    width: 28px;
    height: 0;
    border-top: 1.5px dashed #e67e22;
    display: inline-block;
    opacity: 0.5;
}

.legend-text {
    font-size: 0.78rem;
    color: #4b5161;
}

.legend-text-muted {
    color: #9ca3af;
}

@media (max-width: 767.98px) {
    .global-map-header {
        flex-direction: column;
        gap: 8px;
        padding: 20px 0px;
    }

    .global-map-desc {
        text-align: left;
    }

    .global-map-legend {
        gap: 20px;
        padding: 14px 24px 20px;
    }
    .global-map-title h2 {
      font-size: 30px;
      text-indent: 45px;
      margin-top: -20px;
    }
    .global-map-desc{
      display: none;
    }
    .global-map-title::before {
      font-size: 30px;
    }
    .posts-section .section-title::before {
      font-size:30px;
    }
   .posts-section .section-title h2 {
     font-size: 30px;
     margin-top: -15px;
    text-indent: 50px;
    }
    .product-section .section-title::before{
      font-size: 30px;
    }
    .about-3 .image-wrapper img{
      padding-left: 0px;
    }
    .hero-3 h2,.services-2 h2,.contact-2 .contact-strips-row h2,.section-title h2{
      font-size: 30px;
    }
    .section-title::before{
      font-size:40px;
    }

}

/* =========================================
   自定义滚动动画 - 由下往上淡入
   ========================================= */

.fade-up-scroll {
    opacity: 0;
    transform: translateY(40px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-up-scroll.is-visible {
    opacity: 1;
    transform: translateY(0); 
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }


/* ------------------------------------------------
     SECTION BASE
------------------------------------------------ */
  .solution-1.section,
  .solution-2.section,
  .solution-3.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f7fafc;
  }

  /* ===== H2 TITLE ===== */
  .solution-1.section .row > h2,
  .solution-2.section .row > h2,
  .solution-3.section .row > h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #123a6b;
    margin-bottom: 3rem;
    width: 100%;
  }

  .image-showcase,
  .image-grid {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(18, 58, 107, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
  }

.image-showcase,
.image-grid {
  transition: all 0.35s ease;
}

.image-showcase:hover,
.image-grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(18, 58, 107, 0.12);
}

  .main-image img,
  .image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }

  /* ===== RIGHT COLUMN - CONTENT ===== */
  .content-wrapper,
  .about-content {
    line-height: 1.8;
    color: #4a5568;
  }

  .content-wrapper .lead-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #132650;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid #2fa291;
    background-color: rgba(47, 162, 145, 0.05);
    border-radius: 0 12px 12px 0;
  }

  .trusted-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #123a6b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
    position: relative;
  }

  .trusted-title2, .trusted-title3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
  }

  .trusted-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(135deg, #123a6b 0%, #096b94 50%, #2fa291 100%);
    border-radius: 2px;
  }

  .trusted-title:first-child {
    margin-top: 0;
  }

  .description,
  .trusted-description {
    color: #70b161;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.75;
    padding-left: 1.25rem;
    font-weight: 700;
  }

  .solution-3 .trusted-description {
    color: #12264f;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
  }

  .solution-2 .advantages,
  .solution-3 .advantages {
    padding: 0.25rem 3rem;
    background: #12264f;
    border-left: 15px solid #70b161;
    border-right: 15px solid #70b161;
  }

  /* ===== FEATURE LISTS ===== */
  .features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
  }

  .feature-item {
    background: #ffffff;
    border: 2px solid #2fa291;
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(18, 58, 107, 0.06);
    text-align: center;
  }

  .feature-item h5 {
    margin: 0;
    font-weight: 500;
    color: #1a2332;
    font-size: 1rem;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  .feature-list li {
    padding: 0.775rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ffffff;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  }

  .feature-list li:last-child {
    border-bottom: none;
  }

  .feature-list li i.bi-check-circle-fill {
    color: #2fa291;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .optimization-diagram {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem 0.6rem 0.5rem 0.6rem;
    border: 1px solid #e2e8f0;
  }

  .optimization-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .optimization-card {
    background: linear-gradient(135deg, #123a6b 0%, #096b94 100%);
    border-radius: 12px;
    padding: 1rem;
    flex: 1;
    min-width: 140px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(18, 58, 107, 0.15);
  }

  .card-header {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .card-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .card-list li {
    font-size: 0.875rem;
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
  }

  .arrow-icon {
    color: #2fa291;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .connector-arrow {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    color: #ff8c00;
    font-weight: bold;
    padding: 0 0.05rem;
  }

  .down-arrow {
    text-align: center;
    font-size: 1.75rem;
    color: #ff8c00;
    font-weight: bold;
    line-height: 1;
    margin: 0.25rem 0;
  }

  .result-banner {
    background: linear-gradient(135deg, #123a6b 0%, #096b94 100%);
    color: #ffffff;
    text-align: center;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(18, 58, 107, 0.2);
  }

  .result-value {
    color: #2fa291;
    font-size: 1.125rem;
    margin-left: 0.5rem;
  }

  /* 移动端响应式 */
  @media (max-width: 767.98px) {
    .optimization-grid {
      flex-direction: column;
      align-items: center;
    }

    .connector-arrow {
      transform: rotate(90deg);
      padding: 0.5rem 0;
    }

    .optimization-card {
      width: 100%;
      max-width: 320px;
    }

    .card-list li {
      font-size: 0.9rem;
      padding: 0.4rem 0;
    }

    .result-banner {
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
    }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991.98px) {
    .solution-1.section,
    .solution-2.section,
    .solution-3.section {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .solution-1.section .row > h2,
    .solution-2.section .row > h2,
    .solution-3.section .row > h2 {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    .image-showcase,
    .image-grid {
      padding: 1.5rem;
      margin-bottom: 2rem;
    }

    .trusted-title {
      font-size: 1.35rem;
      margin-top: 1.5rem;
    }
    .trusted-title2 {
      font-size: 1.35rem;
      margin-top: 1.5rem;
      color: #fff;
    }

  }

img {
  max-width: 100%;
  height: auto;
}

/* ===== globalmap-section ===== */
   .globalmap-section {
        --brand-blue: #1e3a8a;
        --brand-green: #059669;
        --brand-purple: #6366f1;
        --brand-gradient: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    }

    /* 文本颜色强制覆盖 */
    .globalmap-section .text-primary { color: var(--brand-blue) !important; }
    
    /* 按钮样式 */
    .globalmap-section .btn-primary {
        background: var(--brand-gradient);
        border: none; 
        color: #fff;
        transition: all 0.3s ease;
    }
    .globalmap-section .btn-primary:hover {
        opacity: 0.9;
        color: #fff; 
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4); 
        transform: translateY(-1px);
    }

    .globalmap-section .btn-outline-primary {
        color: var(--brand-blue);
        border-color: var(--brand-blue);
        background: transparent;
        transition: all 0.3s ease;
    }
    .globalmap-section .btn-outline-primary:hover {
        color: #fff;
        background: var(--brand-gradient);
        border-color: transparent;
    }

    /* =========================================
       地图标记样式
    ========================================= */
    .map-container { position: relative; width: 100%; }
    
    .map-pin-wrapper {
        position: absolute;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 5;
    }

    .pin-label {
        margin-top: 6px;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    /* 1. Targeted Market (紫色虚线圈) */
    .marker-market .market-scope {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px dashed var(--brand-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(99, 102, 241, 0.05);
        position: relative;
    }
    .marker-market .market-scope::after {
        content: '';
        width: 4px;
        height: 4px;
        background-color: var(--brand-purple);
        border-radius: 50%;
    }
    .marker-market .pin-label {
        color: var(--brand-purple);
        border: 1px solid var(--brand-purple);
        background-color: #fff;
    }

    /* 2. Factory (绿色实心) */
    .marker-factory .pin-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--brand-green);
        border: 2px solid #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .marker-factory .pin-label {
        background-color: var(--brand-green);
        color: #fff;
        border: none;
    }

    /* 3. HQ (金色脉冲) */
    .marker-hq .pin-dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #ffc107;
        border: 2px solid #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        position: relative;
        z-index: 2;
    }
    .marker-hq .pin-label {
        background-color: #ffc107;
        color: #000;
    }
    .pulse-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #ffc107;
        z-index: -1;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { width: 100%; height: 100%; opacity: 0.6; }
        100% { width: 300%; height: 300%; opacity: 0; }
    }

    /* =========================================
       交互与响应式
    ========================================= */
    .stat-item {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .stat-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.08) !important;
    }

    .brand-green-bg {
        background-color: var(--brand-green) !important;
    }

    @media (max-width: 768px) {
        .map-container { height: 350px; }
        .pin-label { font-size: 0.6rem; padding: 1px 4px; }
        .marker-hq .pin-label, .marker-factory .pin-label, .marker-market .pin-label { display: none; }
        .marker-hq .pin-label { display: block; font-size: 0.7rem; }
    }


.country-tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    cursor: default;
}

.country-tag:hover {
    background: var(--brand-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

.globalmap-section .layout-section h3{
  font-size: 38px;
}

        /* ========== Section 整体 ========== */
        .project-section {
            position: relative;
            background: #f7fafc;
            padding: 88px 0 80px;
            overflow: hidden;
        }

        /* 网格纹理 */
        .grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(30, 58, 138, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 58, 138, 0.035) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
        }

        /* 右上角装饰光斑 */
        .deco-glow {
            position: absolute;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
            opacity: 0.45;
        }
        .deco-glow-1 {
            top: -120px;
            right: -80px;
            background: radial-gradient(circle, rgba(30, 58, 138, 0.12), transparent 70%);
        }
        .deco-glow-2 {
            bottom: -100px;
            left: -60px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.10), transparent 70%);
        }

        /* 顶部渐变线 */
        .top-accent-line {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, #1e3a8a 20%, #059669 80%, transparent 100%);
        }

        /* ========== 标题区 ========== */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 16px;
            border-radius: 100px;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(5, 150, 105, 0.08));
            border: 1px solid rgba(30, 58, 138, 0.1);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #1e3a8a;
            margin-bottom: 24px;
        }

        .section-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.5); }
        }

        .main-title {
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -0.035em;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .main-title .highlight {
            background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sub-title {
            font-size: clamp(0.95rem, 1.5vw, 1.12rem);
            font-weight: 400;
            color: #64748b;
            line-height: 1.65;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========== 数据条 ========== */
        .stat-bar {
            display: flex;
            flex-wrap: wrap;
            margin-top: 48px;
            background: #ffffff;
            border: 1px solid #e8ecf1;
            border-radius: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.03);
            overflow: hidden;
            position: relative;
        }

        .stat-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #1e3a8a, #059669);
        }

        .stat-item {
            flex: 1;
            min-width: 150px;
            padding: 24px 20px;
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 18%;
            height: 64%;
            width: 1px;
            background: #e8ecf1;
        }

        .stat-value {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-value .unit {
            font-size: 0.8rem;
            font-weight: 600;
        }

        .stat-label {
            font-size: 0.73rem;
            color: #94a3b8;
            margin-top: 4px;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        /* ========== 小节标题 ========== */
        .subsection-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .subsection-title .icon-box {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            color: #ffffff;
            flex-shrink: 0;
        }

        .subsection-title h3 {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 0;
            color: #0f172a;
        }

        .subsection-title .title-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, #e2e8f0, transparent);
        }

        /* ========== 设计条件卡片 ========== */
        .condition-card {
            background: #ffffff;
            border: 1px solid #e8ecf1;
            border-radius: 16px;
            padding: 32px 28px;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .condition-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #1e3a8a, #059669);
            opacity: 0;
            transition: opacity 0.35s;
        }

        .condition-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
            border-color: rgba(30, 58, 138, 0.15);
        }

        .condition-card:hover::after {
            opacity: 1;
        }

        .condition-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.07), rgba(5, 150, 105, 0.07));
            border: 1px solid rgba(30, 58, 138, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #1e3a8a;
            margin-bottom: 18px;
        }

        .condition-card .card-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.07), rgba(5, 150, 105, 0.07));
            color: #1e3a8a;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .condition-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
            color: #0f172a;
        }

        .condition-card p {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        .condition-card .spec-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 0;
        }

        .condition-card .spec-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #64748b;
            padding: 4px 0;
        }

        .condition-card .spec-list li i {
            color: #059669;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        /* ========== 分隔线 ========== */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
            margin: 48px 0;
        }

        /* ========== 优势卡片（统一渐变背景） ========== */
        .advantage-card {
            background: linear-gradient(145deg, rgba(30, 58, 138, 0.05) 0%, rgba(5, 150, 105, 0.07) 100%);
            border: 1px solid rgba(30, 58, 138, 0.08);
            border-radius: 16px;
            padding: 28px 22px;
            text-align: center;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #1e3a8a, #059669);
            opacity: 0;
            transition: opacity 0.35s;
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(30, 58, 138, 0.09) 0%, rgba(5, 150, 105, 0.12) 100%);
            opacity: 0;
            transition: opacity 0.35s;
            border-radius: 16px;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(30, 58, 138, 0.1), 0 4px 10px rgba(0, 0, 0, 0.04);
            border-color: rgba(30, 58, 138, 0.15);
        }

        .advantage-card:hover::before {
            opacity: 1;
        }

        .advantage-card:hover::after {
            opacity: 1;
        }

        .advantage-card > * {
            position: relative;
            z-index: 1;
        }

        .advantage-card .adv-number {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .advantage-card .adv-icon {
            font-size: 2rem;
            margin-bottom: 14px;
            display: block;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .advantage-card h5 {
            font-size: 1.17rem;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
            color: #0f172a;
        }

        .advantage-card p {
            font-size: 0.78rem;
            color: #64748b;
            line-height: 1.55;
            margin: 0;
        }

        /* ========== 入场动画 ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-up.d1 { transition-delay: 0.08s; }
        .fade-up.d2 { transition-delay: 0.16s; }
        .fade-up.d3 { transition-delay: 0.24s; }
        .fade-up.d4 { transition-delay: 0.32s; }
        .fade-up.d5 { transition-delay: 0.40s; }

        /* ========== 响应式 ========== */
        @media (max-width: 767.98px) {
            .project-section { padding: 56px 0 50px; }

            .stat-bar { flex-direction: column; }
            .stat-item { padding: 16px 20px; }
            .stat-item:not(:last-child)::after {
                right: 12%;
                top: auto;
                bottom: 0;
                width: 76%;
                height: 1px;
            }

            .condition-card { padding: 24px 20px; }
            .advantage-card { padding: 24px 18px; }
        }

        @media (max-width: 575.98px) {
            .main-title { font-size: 1.75rem; }
        }

        .structure-section {
            position: relative;
            background: #f7fafc;
            padding: 88px 0 96px;
            overflow: hidden;
        }
        .grid-overlay {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(30,58,138,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30,58,138,0.035) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
        }
        .deco-glow {
            position: absolute; width: 480px; height: 480px; border-radius: 50%;
            pointer-events: none; filter: blur(80px); opacity: 0.45;
        }
        .deco-glow-1 { top: -120px; right: -80px; background: radial-gradient(circle, rgba(30,58,138,0.12), transparent 70%); }
        .deco-glow-2 { bottom: -100px; left: -60px; background: radial-gradient(circle, rgba(5,150,105,0.10), transparent 70%); }
        .top-accent-line {
            position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, transparent 0%, #1e3a8a 20%, #059669 80%, transparent 100%);
        }

        .section-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 5px 16px; border-radius: 100px;
            background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(5,150,105,0.08));
            border: 1px solid rgba(30,58,138,0.1);
            font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
            text-transform: uppercase; color: #1e3a8a; margin-bottom: 24px;
        }
        .section-badge .dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.5); }
        }
        .main-title {
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 800; line-height: 1.12; letter-spacing: -0.035em;
            color: #0f172a; margin-bottom: 16px;
        }
        .main-title .highlight {
            background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .sub-title {
            font-size: clamp(0.95rem, 1.5vw, 1.12rem);
            font-weight: 400; color: #64748b; line-height: 1.65;
            max-width: 640px; margin: 0 auto;
        }

        /* ========== 视频容器 ========== */
        .video-wrapper {
            margin-top: 48px;
            background: #ffffff;
            border: 1px solid #e8ecf1;
            border-radius: 16px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 28px rgba(0,0,0,0.04);
            overflow: hidden;
        }
        .video-header {
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: 16px;
            padding: 16px 24px;
            border-bottom: 1px solid #e8ecf1;
            background: linear-gradient(135deg, rgba(30,58,138,0.02), rgba(5,150,105,0.02));
        }
        .video-title-group { display: flex; align-items: center; gap: 12px; }
        .video-icon {
            width: 36px; height: 36px; border-radius: 10px;
            background: linear-gradient(135deg, #1e3a8a, #059669);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.9rem; color: #fff;
        }
        .video-label {
            font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
            text-transform: uppercase; color: #94a3b8;
        }
        .video-name {
            font-size: 0.88rem; font-weight: 700; color: #0f172a; letter-spacing: -0.01em;
        }
        .video-meta { display: flex; align-items: center; gap: 10px; }
        .meta-tag {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 4px 12px; border-radius: 6px;
            background: rgba(30,58,138,0.06);
            font-size: 0.7rem; font-weight: 600; color: #1e3a8a; letter-spacing: 0.02em;
        }
        .meta-tag i { font-size: 0.72rem; }

        .video-stage {
            position: relative;
            background: #0f172a;
            aspect-ratio: 16 / 9;
            cursor: pointer;
            overflow: hidden;
        }
        .video-stage video {
            width: 100%; height: 100%; object-fit: cover; display: block;
        }
        .video-poster {
            position: absolute; inset: 0;
            background:
                linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,58,138,0.65) 50%, rgba(5,150,105,0.5) 100%);
            display: flex; align-items: center; justify-content: center;
            flex-direction: column; gap: 16px;
            transition: opacity 0.5s, visibility 0.5s;
        }
        .video-poster.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        .video-poster::before {
            content: '';
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 48px 48px;
        }
        .video-poster::after {
            content: '';
            position: absolute;
            width: 320px; height: 320px; border-radius: 50%;
            background: radial-gradient(circle, rgba(5,150,105,0.18), transparent 70%);
            pointer-events: none;
        }
        .play-btn {
            position: relative; z-index: 2;
            width: 80px; height: 80px; border-radius: 50%;
            background: rgba(255,255,255,0.12);
            border: 2px solid rgba(255,255,255,0.3);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(8px);
        }
        .play-btn i {
            font-size: 1.8rem; color: #ffffff;
            margin-left: 4px;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
        }
        .video-stage:hover .play-btn {
            transform: scale(1.1);
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
            box-shadow: 0 0 40px rgba(5,150,105,0.3);
        }
        .play-ring {
            position: absolute; z-index: 1;
            width: 80px; height: 80px; border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.15);
            animation: ring-pulse 2.4s ease-out infinite;
        }
        .play-ring:nth-child(2) { animation-delay: 0.8s; }
        @keyframes ring-pulse {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(2.2); opacity: 0; }
        }
        .poster-text { position: relative; z-index: 2; text-align: center; }
        .poster-text .pt-main {
            font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85);
            letter-spacing: 0.04em;
        }
        .poster-text .pt-sub {
            font-size: 0.68rem; color: rgba(255,255,255,0.45);
            margin-top: 4px; font-weight: 500;
        }
        .video-footer {
            display: flex; align-items: center; justify-content: space-between;
            padding: 12px 24px;
            border-top: 1px solid #e8ecf1;
            background: linear-gradient(135deg, rgba(30,58,138,0.015), rgba(5,150,105,0.015));
        }
        .vf-info {
            display: flex; align-items: center; gap: 8px;
            font-size: 0.72rem; color: #94a3b8; font-weight: 500;
        }
        .vf-info i { font-size: 0.78rem; color: #059669; }
        .vf-badge {
            padding: 3px 10px; border-radius: 5px;
            background: rgba(5,150,105,0.08);
            color: #059669; font-size: 0.65rem; font-weight: 600;
            letter-spacing: 0.04em; text-transform: uppercase;
        }

        /* ========== 纯图片卡片 ========== */
        .img-card {
            background: #ffffff;
            border: 1px solid #e8ecf1;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
            height: 100%;
        }
        .img-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 32px rgba(0,0,0,0.07), 0 4px 10px rgba(0,0,0,0.04);
            border-color: rgba(30,58,138,0.15);
        }
        .img-card img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .img-card:hover img {
            transform: scale(1.05);
        }

        /* ========== 入场动画 ========== */
        .fade-up {
            opacity: 0; transform: translateY(28px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .fade-up.d1 { transition-delay: 0.08s; }
        .fade-up.d2 { transition-delay: 0.16s; }
        .fade-up.d3 { transition-delay: 0.24s; }
        .fade-up.d4 { transition-delay: 0.32s; }

        /* ========== 响应式 ========== */
        @media (max-width: 767.98px) {
            .structure-section { padding: 56px 0 64px; }
            .video-header { flex-direction: column; align-items: flex-start; }
            .video-meta { flex-wrap: wrap; gap: 8px; }
            .play-btn { width: 64px; height: 64px; }
            .play-btn i { font-size: 1.4rem; }
            .play-ring { width: 64px; height: 64px; }
        }
        @media (max-width: 575.98px) {
            .main-title { font-size: 1.75rem; }
            .video-stage { aspect-ratio: 4 / 3; }
        }