@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    visibility: visible;
    font-family: 'Roboto', arial, sans-serif;
    color: #000;
  }

h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 700;
}

p{
    margin-bottom: 5px;
}
ul,li{
    list-style: none;
}
ul{
    padding-left: 0px;
}
a{
    text-decoration: none !important;
}
a:hover{
    color: #000;
}

.pc{
    display: block;
}@media(max-width:992px){
    .pc{
        display: none;
    }
}

.w-90{
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.btn:focus,
.btn:active,
.form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* =====================================================
   KunTai Building Materials — Global Corporate Website
   Brand Colors: Deep Green #003f24 | Light Green #81af80
   ===================================================== */

:root {
  --kt-deep-green: #003f24;
  --kt-light-green: #81af80;
  --kt-deep-green-rgb: 0, 63, 36;
  --kt-light-green-rgb: 129, 175, 128;
  --kt-white: #ffffff;
  --kt-black: #1a1a1a;
  --kt-gray: #f8f8f8;
  --kt-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Common utilities ---------- */
.kt-container {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Header & Navbar ---------- */
.site-header {
  position: relative;
  width: 100%;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--kt-transition);
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  animation: headerSlideDown 0.3s ease;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main-navbar {
  padding: 0;
  transition: padding var(--kt-transition);
  display: flex;
  align-items: center;
}

@media (min-width:993px){
  .main-navbar{
    height: 100px;
  }
  .site-header.sticky .main-navbar {
    height: 90px;
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--kt-transition);
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand img {
  width: auto;
  max-height: 80px;
  object-fit: contain;
}

/* ---------- Desktop Navigation ---------- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
  transition: color var(--kt-transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--kt-light-green);
  transition: width var(--kt-transition);
}

.nav-link:hover::after{
  width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--kt-deep-green);
}

.dropdown-caret {
  margin-left: 5px;
  font-size: 12px;
  transition: transform var(--kt-transition);
}

/* ---------- Dropdown Menu ---------- */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--kt-transition), transform var(--kt-transition), visibility var(--kt-transition);
  list-style: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--kt-deep-green);
  transition: background-color var(--kt-transition), color var(--kt-transition), padding-left var(--kt-transition);
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: rgba(var(--kt-light-green-rgb), 0.12);
  color: var(--kt-deep-green);
  padding-left: 28px;
}

/* ---------- Language Switcher ---------- */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(var(--kt-deep-green-rgb), 0.25);
  border-radius: 50px;
  color: var(--kt-deep-green);
  font-size: 14px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--kt-transition);
}

.lang-btn:hover {
  border-color: var(--kt-deep-green);
  color: var(--kt-deep-green);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  width: max-content;
  min-width: 200px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: all var(--kt-transition);
  list-style: none;
}

.lang-switcher:hover .lang-menu,
.lang-switcher:focus-within .lang-menu,
.lang-btn[aria-expanded="true"] + .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--kt-deep-green);
  white-space: nowrap;
  transition: background-color var(--kt-transition);
}

.lang-item:hover,
.lang-item.active,
.lang-item.is-active {
  background-color: rgba(var(--kt-light-green-rgb), 0.12);
}

/* ---------- Mobile Toggle ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--kt-deep-green);
  border-radius: 2px;
  transition: transform var(--kt-transition), opacity var(--kt-transition), background-color var(--kt-transition);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1031;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100vh;
  background: var(--kt-white);
  z-index: 1032;
  padding: 24px 28px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.mobile-menu-header .navbar-brand img {
  max-height: 56px;
}

.menu-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(var(--kt-deep-green-rgb), 0.15);
  border-radius: 50%;
  color: var(--kt-deep-green);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--kt-transition);
}

.menu-close:hover {
  background: var(--kt-deep-green);
  color: var(--kt-white);
}

.mobile-nav-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(var(--kt-deep-green-rgb), 0.08);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--kt-deep-green);
  transition: color var(--kt-transition), padding-left var(--kt-transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--kt-light-green);
  padding-left: 10px;
}

.mobile-lang {
  margin-top: auto;
  padding-top: 24px;
}

.mobile-lang-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-lang-links {
  display: flex;
  gap: 12px;
}

.mobile-lang-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--kt-deep-green-rgb), 0.15);
  color: var(--kt-deep-green);
  font-size: 14px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  transition: all var(--kt-transition);
}

.mobile-lang-links a:hover,
.mobile-lang-links a.active {
  background: var(--kt-deep-green);
  border-color: var(--kt-deep-green);
  color: var(--kt-white);
}

/* ---------- Hero Banner ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--kt-deep-green);
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.banner-content-inner {
  max-width: 640px;
}

.banner-eyebrow {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kt-light-green);
  padding: 6px 16px;
  background: rgba(129, 175, 128, 0.15);
  border: 1px solid rgba(129, 175, 128, 0.35);
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.banner-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}

.banner-subtitle {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.3;
  color: var(--kt-light-green);
  margin: 0 0 24px;
}

.banner-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 5px;
}

.banner-locations {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 32px;
}

.banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--kt-transition);
}

.banner-btn-primary {
  background: var(--kt-light-green);
  border: 2px solid var(--kt-light-green);
  color: var(--kt-deep-green);
}

.banner-btn-primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.banner-btn-primary i {
  transition: transform 0.3s ease;
}

.banner-btn-primary:hover i {
  transform: translateX(4px);
}

.banner-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.banner-btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--kt-deep-green);
  transform: translateY(-2px);
}

/* Banner dots */
.banner-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.banner-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.banner-dots button.active {
  background: var(--kt-light-green);
  border-color: var(--kt-light-green);
  transform: scale(1.2);
}

.banner-dots button:hover {
  border-color: #fff;
}

/* Banner text animation */
.banner-slide.active .banner-content-inner > * {
  animation: bannerFadeUp 0.8s ease forwards;
}

.banner-slide.active .banner-title { animation-delay: 0.2s; }
.banner-slide.active .banner-subtitle { animation-delay: 0.4s; }
.banner-slide.active .banner-desc { animation-delay: 0.6s; }
.banner-slide.active .banner-locations { animation-delay: 0.7s; }
.banner-slide.active .banner-actions { animation-delay: 0.85s; }

@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content-inner > * {
  opacity: 0;
}

/* Responsive: Banner */
@media (max-width: 991px) {
  .banner-slider {
    height: 500px;
  }
  .banner-content {
    padding: 0 6%;
  }
  .banner-content-inner {
    max-width: 100%;
  }
  .banner-title {
    font-size: 32px;
  }
  .banner-subtitle {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .banner-desc {
    font-size: 13px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .banner-slider {
    height: 420px;
  }
  .banner-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  }
  .banner-content {
    align-items: flex-end;
    padding: 0 5% 48px;
  }
  .banner-content-inner {
    max-width: 100%;
  }
  .banner-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .banner-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .banner-desc {
    display: none;
  }
  .banner-locations {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .banner-btn {
    padding: 11px 22px;
    font-size: 13px;
  }
  .banner-dots {
    bottom: 16px;
  }
}

/* ---------- Quick Inquiry Form ---------- */
.section-inquiry {
  padding: 40px 0;
  background: var(--kt-light-green);
}

.inquiry-form .form-group {
  margin-bottom: 0;
}

.inquiry-form .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--kt-black);
  transition: all 0.3s ease;
}

.inquiry-form .form-control::placeholder {
  color: #888;
}

.inquiry-form .form-control:focus {
  background: var(--kt-white);
  border-color: var(--kt-deep-green);
  box-shadow: 0 0 0 4px rgba(var(--kt-deep-green-rgb), 0.15);
  outline: none;
}

.btn-inquiry {
  width: 100%;
  padding: 14px 20px;
  background: var(--kt-deep-green);
  color: var(--kt-white);
  border: none;
  border-radius: 8px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.btn-inquiry:hover {
  background: #004d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 63, 36, 0.35);
}

.btn-inquiry:active {
  transform: translateY(-1px);
}

.btn-inquiry i {
  transition: transform 0.35s ease;
}

.btn-inquiry:hover i {
  transform: translateX(4px);
}

/* ---------- Buttons ---------- */
.kt-btn-primary,
.kt-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  padding: 14px 32px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all var(--kt-transition);
  cursor: pointer;
}

.kt-btn-primary {
  background: var(--kt-light-green);
  border: 2px solid var(--kt-light-green);
  color: var(--kt-deep-green);
}

.kt-btn-primary:hover {
  background: var(--kt-white);
  border-color: var(--kt-white);
  color: var(--kt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.kt-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--kt-white);
}

.kt-btn-outline:hover {
  background: var(--kt-white);
  border-color: var(--kt-white);
  color: var(--kt-deep-green);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .main-navbar {
    padding: 14px 0;
  }

  .nav-menu,
  .lang-switcher.d-none.d-lg-block {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-brand img {
    max-height: 56px;
  }

}

@media (max-width: 575px) {
  .kt-container {
    width: 94%;
  }

}

/* Utility: prevent body scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* =====================================================
   Section Common Styles (reusable)
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 16px;
  background: rgba(var(--kt-light-green-rgb), 0.12);
  border: 1px solid rgba(var(--kt-light-green-rgb), 0.25);
  border-radius: 50px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kt-deep-green);
}

.section-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--kt-deep-green);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   Our Core Services
   ===================================================== */
.section-services {
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
  background: #fff;
}

/* --- Decorative floating shape (bottom-right) --- */
.services-deco-shape {
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 320px;
  height: auto;
  opacity: 0.2;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
  animation: floatShape 6s ease-in-out infinite;
  display: none;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -18px) rotate(3deg);
  }
}

.services-deco-shape ~ .kt-container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .services-deco-shape {
    width: 200px;
    opacity: 0.08;
  }
}

.services-grid {
  margin-left: -12px;
  margin-right: -12px;
}

.services-grid > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 40px;
}

/* ---------- Service Card ---------- */
.service-card {
  position: relative;
  display: block; /* a 标签重置：保持块级布局，padding-top 宽高比生效 */
  text-decoration: none; /* a 标签重置：去除下划线 */
  color: inherit; /* a 标签重置：继承文字颜色 */
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio — immune to flex layout interference */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s ease;
  will-change: transform;
}

.service-card:focus-visible {
  outline: 2px solid var(--kt-light-green);
  outline-offset: 2px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

/* --- Card Image (direct child, fills card) --- */
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.service-card:hover > img {
  transform: scale(1.08);
}

/* --- Bottom Title Bar (default state) --- */
.service-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-card-info .service-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--kt-white);
  margin: 0;
}

.service-card:hover .service-card-info {
  opacity: 0;
  visibility: hidden;
}

/* --- Hover Overlay (icon + title centered) --- */
.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-card:hover .service-card-overlay {
  opacity: 1;
  visibility: visible;
}

.service-card-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-card-content {
  transform: translateY(0);
}

.service-icon {
  display: block;
  font-size: 42px;
  color: var(--kt-light-green);
  margin-bottom: 14px;
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card-overlay .service-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--kt-white);
  margin: 0;
  max-width: 200px;
}

/* ---------- Responsive: Services ---------- */
@media (max-width: 991px) {
  .section-services {
    padding: 70px 0 80px;
  }
  .section-header {
    margin-bottom: 44px;
  }
  .section-inquiry {
    padding: 44px 0 52px;
  }
  .inquiry-form .form-group {
    margin-bottom: 18px;
  }
  .inquiry-form .row.align-items-end [class*="col-"]:last-child .form-group {
    margin-bottom: 0;
  }
  .services-grid > [class*="col-"] {
    margin-bottom: 20px;
  }
  .service-card-info .service-card-title,
  .service-card-overlay .service-card-title {
    font-size: 15px;
  }
  .service-icon {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .section-services {
    padding: 56px 0 64px;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .section-inquiry {
    padding: 28px 0;
  }
  .inquiry-form .form-group {
    margin-bottom: 16px;
  }
  .services-grid > [class*="col-"] {
    margin-bottom: 18px;
  }
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* =====================================================
   Why Choose Us
   ===================================================== */
.section-why-us {
  padding: 100px 0 100px;
  background: var(--kt-gray);
  border-top-left-radius: 50% 80px;
  border-top-right-radius: 50% 80px;
}

.why-us-list {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-item {
  margin-bottom: 0;
}

/* --- Text Side --- */
.why-us-text {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 20px;
}

.why-us-num {
  flex-shrink: 0;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--kt-light-green);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.why-us-item:hover .why-us-num {
  opacity: 0.8;
}

.why-us-text-body {
  flex: 1;
  padding-top: 8px;
}

.why-us-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--kt-deep-green);
  margin: 0 0 12px;
}

.why-us-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* --- Image Side --- */
.why-us-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
  transition: box-shadow 0.45s ease;
}

.why-us-item:hover .why-us-img {
  box-shadow: 0 20px 50px rgba(0, 63, 36, 0.18);
}

.why-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-us-item:hover .why-us-img img {
  transform: scale(1.06);
}

/* --- Curved Dashed Connector --- */
.why-us-connector {
  width: 100%;
  height: 60px;
  margin: 10px 0;
}

.why-us-connector svg {
  width: 100%;
  height: 100%;
  display: block;
}

.why-us-connector.connector-reverse svg {
  transform: scaleX(-1);
}

.connector-path {
  fill: none;
  stroke: var(--kt-light-green);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  opacity: 0.6;
  animation: dashFlow 1.2s linear infinite;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -14;
  }
}

/* --- Responsive: Why Choose Us --- */
@media (max-width: 991px) {
  .section-why-us {
    padding: 120px 0 80px;
  }
  .why-us-text {
    padding: 0;
    margin-bottom: 24px;
  }
  .why-us-num {
    font-size: 44px;
  }
  .why-us-title {
    font-size: 20px;
  }
  .why-us-connector {
    height: 40px;
  }
}

@media (max-width: 575px) {
  .section-why-us {
    padding: 90px 0 64px;
    border-top-left-radius: 50% 60px;
    border-top-right-radius: 50% 60px;
  }
  .why-us-text {
    gap: 16px;
  }
  .why-us-num {
    font-size: 36px;
  }
  .why-us-title {
    font-size: 18px;
  }
  .why-us-desc {
    font-size: 14px;
  }
  .why-us-connector {
    height: 30px;
  }
}

/* =====================================================
   CTA Section
   ===================================================== */
.section-cta {
  position: relative;
  padding: 120px 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

/* --- Geometric decorative shapes --- */
.cta-shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.cta-shape-diagonal {
  top: -80px;
  left: -120px;
  width: 380px;
  height: 580px;
  background: var(--kt-deep-green);
  opacity: 0.55;
  transform: rotate(-18deg);
  border-radius: 24px;
}

.cta-shape-triangle {
  bottom: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--kt-deep-green);
  opacity: 0.5;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  color: #fff;
  margin: 0 0 20px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  padding: 14px 32px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--kt-transition);
}

.cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.cta-btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--kt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-solid {
  background: var(--kt-deep-green);
  border: 2px solid var(--kt-deep-green);
  color: #fff;
}

.cta-btn-solid:hover {
  background: var(--kt-light-green);
  border-color: var(--kt-light-green);
  color: var(--kt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

/* --- Responsive: CTA --- */
@media (max-width: 991px) {
  .section-cta {
    padding: 80px 0;
    background-attachment: scroll;
  }
  .cta-shape-diagonal {
    width: 260px;
    height: 400px;
    left: -80px;
  }
  .cta-shape-triangle {
    width: 150px;
    height: 150px;
  }
}

/* =====================================================
   Full Support for Your China Visit
   ===================================================== */
.section-support {
  padding: 100px 0 120px;
  background: var(--kt-white);
}

.support-grid {
  margin-left: -12px;
  margin-right: -12px;
}

.support-grid > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

/* ---------- Support Card ---------- */
.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f8f5f2;
  border-radius: 12px;
  padding: 32px 28px 80px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease,
              background 0.4s ease;
}

.support-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 14px 0;
  border-color: transparent var(--kt-white) transparent transparent;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 63, 36, 0.12);
  background: #f3efe9;
}

.support-card-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.support-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.support-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #888;
  margin: 0;
}

.support-card-link {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-card-link i {
  color: var(--kt-light-green);
  transition: transform 0.3s ease;
}

.support-card:hover .support-card-link {
  color: var(--kt-deep-green);
}

.support-card:hover .support-card-link i {
  transform: translateX(4px);
}

.support-card-icon {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 40px;
  color: var(--kt-light-green);
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              color 0.4s ease;
  z-index: 1;
}

.support-card:hover .support-card-icon {
  transform: scale(1.1) rotate(-5deg);
  color: var(--kt-deep-green);
}

/* --- Responsive: Support --- */
@media (max-width: 991px) {
  .section-support {
    padding: 80px 0 100px;
  }
  .support-card {
    padding: 28px 24px 72px;
  }
  .support-card-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .section-support {
    padding: 60px 0 80px;
  }
  .support-card {
    padding: 24px 20px 68px;
  }
  .support-card-title {
    font-size: 17px;
  }
  .support-card-desc {
    font-size: 13px;
  }
  .support-card-link {
    bottom: 24px;
    left: 20px;
    font-size: 13px;
  }
  .support-card-icon {
    bottom: 20px;
    right: 20px;
    font-size: 32px;
  }
  .support-card::after {
    border-width: 10px 10px 10px 0;
  }
}

/* =====================================================
   Inquiry / Get in Touch
   ===================================================== */
.section-inquiry {
  padding: 100px 0 120px;
  background: var(--kt-deep-green);
  position: relative;
  overflow: hidden;
}

.section-inquiry::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(129, 175, 128, 0.08);
  pointer-events: none;
}

.section-inquiry::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(129, 175, 128, 0.06);
  pointer-events: none;
}

.inquiry-row {
  position: relative;
  z-index: 1;
}

/* --- Left info --- */
.inquiry-info {
  padding-right: 20px;
}

.inquiry-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 20px;
}

.inquiry-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 32px;
}

.inquiry-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inquiry-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  text-align:left;
}

.inquiry-contact-list li:last-child {
  margin-bottom: 0;
}

.inquiry-contact-list i {
  font-size: 18px;
  color: var(--kt-light-green);
  flex-shrink: 0;
}

.inquiry-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.inquiry-contact-list a:hover {
  color: var(--kt-light-green);
}

/* --- Right form --- */
.inquiry-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.inquiry-form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.inquiry-form .row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.inquiry-field {
  margin-bottom: 20px;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 15px;
  color: #333;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: #aaa;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  border-color: var(--kt-light-green);
  background: #fff;
}

.inquiry-field textarea {
  resize: vertical;
  min-height: 120px;
}

.inquiry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--kt-deep-green);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--kt-transition);
}

.inquiry-submit:hover {
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 63, 36, 0.3);
}

.inquiry-submit i {
  transition: transform 0.3s ease;
}

.inquiry-submit:hover i {
  transform: translateX(4px) rotate(-15deg);
}

/* Honeypot 蜜罐字段：完全隐藏且不占据布局空间 */
.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 验证码字段：输入框 + 图片横向一行 */
.inquiry-field-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inquiry-field-captcha input {
  flex: 0 0 140px;
  width: 140px;
}

.inquiry-field-captcha .inquiry-captcha {
  flex: 0 0 auto;
  height: 48px;
  width: auto;
  cursor: pointer;
  border-radius: 6px;
  vertical-align: middle;
  user-select: none;
  transition: opacity 0.2s ease;
}

.inquiry-field-captcha .inquiry-captcha:hover {
  opacity: 0.85;
}

/* 提交按钮 Loading 状态 */
.inquiry-submit.is-loading {
  cursor: wait;
  opacity: 0.85;
}

.inquiry-submit:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.inquiry-submit:disabled:hover {
  background: var(--kt-deep-green);
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* --- Responsive: Inquiry --- */
@media (max-width: 991px) {
  .section-inquiry {
    padding: 80px 0 100px;
  }
  .inquiry-info {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .inquiry-contact-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .inquiry-contact-list li {
    margin-bottom: 0;
  }
  .inquiry-form-wrap {
    padding: 32px 24px;
  }
}

@media (max-width: 575px) {
  .section-inquiry {
    padding: 60px 0 80px;
  }
  .inquiry-title {
    font-size: 26px;
  }
  .inquiry-desc {
    font-size: 14px;
  }
  .inquiry-contact-list {
    flex-direction: column;
    gap: 12px;
  }
  .inquiry-form-wrap {
    padding: 24px 18px;
  }
  .inquiry-field input,
  .inquiry-field textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  .inquiry-submit {
    padding: 14px 24px;
    font-size: 13px;
  }
  .inquiry-field-captcha input {
    flex: 1 1 100px;
    width: auto;
    min-width: 100px;
  }
  .inquiry-field-captcha .inquiry-captcha {
    height: 42px;
  }
}

/* =====================================================
   Site Footer
   ===================================================== */
.site-footer {
  background: #1a2e22;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-main .row > [class*="col-"] {
  margin-bottom: 40px;
}

.footer-main .row > [class*="col-"]:last-child {
  margin-bottom: 0;
}

.footer-col {
  height: 100%;
}

/* --- About column --- */
.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-about-desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all var(--kt-transition);
}

.footer-social a:hover {
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  transform: translateY(-3px);
}

/* --- Headings & Links --- */
.footer-heading {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--kt-light-green);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--kt-light-green);
  padding-left: 4px;
}

/* --- Contact list --- */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  color: var(--kt-light-green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: -2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--kt-light-green);
}

/* --- Footer bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom .kt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--kt-light-green);
}

/* --- Responsive: Footer --- */
@media (max-width: 991px) {
  .footer-main {
    padding: 60px 0 40px;
  }
  .footer-about-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .footer-main {
    padding: 48px 0 32px;
  }
  .footer-main .row > [class*="col-"] {
    margin-bottom: 32px;
  }
  .footer-logo img {
    height: 36px;
  }
  .footer-bottom .kt-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    gap: 16px;
  }
}

/* =====================================================
   Page Banner (inner pages)
   ===================================================== */
.page-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--kt-deep-green);
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.page-banner-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 14px;
}

.page-banner-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   How We Work — Premium Timeline
   ===================================================== */
.section-how-work {
  position: relative;
  padding: 100px 0 120px;
  background: var(--kt-gray);
  overflow: hidden;
}

/* Background glows */
.how-work-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.how-work-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.how-work-glow-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -80px;
  background: rgba(129, 175, 128, 0.12);
}

.how-work-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: rgba(0, 63, 36, 0.06);
}

/* Section header */
.how-work-header {
  position: relative;
  z-index: 1;
}

.how-work-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 16px;
  background: rgba(129, 175, 128, 0.1);
  border: 1px solid rgba(129, 175, 128, 0.3);
  border-radius: 50px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kt-light-green);
}

.how-work-title {
  color: var(--kt-deep-green) !important;
}

.how-work-desc {
  color: #666 !important;
}

/* Timeline */
.how-work-timeline {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Track (static line) */
.how-work-track {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Track fill (animated via JS) */
.how-work-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--kt-light-green), var(--kt-deep-green));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(129, 175, 128, 0.5);
}

/* Step row */
.how-work-step {
  position: relative;
  width: 50%;
  padding: 0 60px 60px 0;
}

.how-work-step[data-side="right"] {
  margin-left: 50%;
  padding: 0 0 60px 60px;
}

/* Node (icon circle on the line) */
.how-work-node {
  position: absolute;
  top: 12px;
  right: -26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--kt-light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.4s ease;
}

.how-work-step[data-side="right"] .how-work-node {
  right: auto;
  left: -26px;
}

.how-work-node i {
  font-size: 20px;
  color: var(--kt-light-green);
  transition: transform 0.4s ease;
}

.how-work-step:hover .how-work-node {
  border-color: var(--kt-deep-green);
  box-shadow: 0 0 0 6px rgba(129, 175, 128, 0.15), 0 0 20px rgba(129, 175, 128, 0.3);
}

.how-work-step:hover .how-work-node i {
  transform: scale(1.15);
}

/* Arrow connector (card → line) */
.how-work-arrow {
  position: absolute;
  top: 30px;
  width: 40px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.how-work-arrow-left {
  right: 20px;
}

.how-work-arrow-right {
  left: 20px;
}

.how-work-arrow::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kt-light-green);
  opacity: 0.6;
}

.how-work-arrow-left::after {
  right: -4px;
}

.how-work-arrow-right::after {
  left: -4px;
}

/* Glassmorphism card */
.how-work-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 30px 32px 28px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* Card top accent line */
.how-work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--kt-light-green), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.how-work-card:hover {
  background: #fff;
  border-color: rgba(129, 175, 128, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 63, 36, 0.1);
}

.how-work-card:hover::before {
  opacity: 1;
}

/* Large gradient number */
.how-work-num {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--kt-light-green) 0%, rgba(129, 175, 128, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

.how-work-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--kt-deep-green);
  margin: 0 0 12px;
}

.how-work-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

/* How We Work — Responsive */
@media (max-width: 767px) {
  .page-banner {
    height: 280px;
  }

  .section-how-work {
    padding: 70px 0 80px;
  }

  .how-work-track {
    left: 26px;
  }

  .how-work-step,
  .how-work-step[data-side="right"] {
    width: 100%;
    margin-left: 0;
    padding: 0 0 40px 70px;
  }

  .how-work-node,
  .how-work-step[data-side="right"] .how-work-node {
    left: 0;
    right: auto;
    top: 6px;
    width: 52px;
    height: 52px;
  }

  .how-work-arrow {
    display: none;
  }

  .how-work-card {
    padding: 24px 20px 22px;
  }

  .how-work-num {
    font-size: 38px;
  }

  .how-work-card-title {
    font-size: 17px;
  }
}

/* =====================================================
   Scenario Solutions Page
   ===================================================== */

/* Back bar */
.page-back-bar {
  padding: 16px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--kt-deep-green);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.page-back-link:hover {
  gap: 10px;
  color: var(--kt-light-green);
}

/* Sort banner (category image) */
.sort-banner {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.sort-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content detail section */
.scenario-detail-content-section {
  padding: 60px 0 80px;
  background: #fff;
}

.scenario-content-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  color: var(--kt-deep-green);
  text-align: center;
  margin: 0 0 40px;
}

.scenario-content-body {
  max-width: 100%;
}

.scenario-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.scenario-content-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

.scenario-content-body h2,
.scenario-content-body h3 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  color: var(--kt-deep-green);
  margin: 24px 0 14px;
}

.scenario-content-body h2 {
  font-size: 22px;
}

.scenario-content-body h3 {
  font-size: 18px;
}

.scenario-content-body ul,
.scenario-content-body ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

.scenario-content-body li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}

.scenario-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.scenario-content-body table th,
.scenario-content-body table td {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  text-align: left;
}

.scenario-content-body table th {
  background: var(--kt-gray);
  font-weight: 700;
  color: var(--kt-deep-green);
}

/* Product card grid (list loop inside content) */
.scenario-content-body .cptucard {
  text-align: center;
  margin-bottom: 24px;
  width: 23%;
  display: inline-block;
  vertical-align: top;
  margin-right: 2%;
}

.scenario-content-body .cptucard:nth-child(4n) {
  margin-right: 0;
}
.scenario-content-body .cptucard .cptu{
  overflow: hidden;
  margin-bottom: 10px;
}
.scenario-content-body .cptucard .cptu img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.scenario-content-body .cptucard:hover .cptu img {
  transform: scale(1.05);
}

.scenario-content-body .cptucard .cpbt {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  text-transform: capitalize;
}

.scenario-content-body .cptucard .cpsub {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #999;
  margin-top: 4px;
  line-height: 1.5;
}

/* Responsive: 2-col on tablet, 1-col on mobile */
@media (min-width: 480px) and (max-width: 991px) {
  .scenario-content-body .cptucard {
    width: 48%;
  }
  .scenario-content-body .cptucard:nth-child(4n) {
    margin-right: 2%;
  }
  .scenario-content-body .cptucard:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .scenario-content-body .cptucard {
    width: 100%;
    margin-right: 0;
  }
}

/* Content prev/next nav */
.section-content-nav {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.content-nav-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.content-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 20px 24px;
  background: var(--kt-gray);
  border-radius: 12px;
  transition: all 0.35s ease;
  flex: 1;
  max-width: 48%;
}

.content-nav-item:hover {
  background: var(--kt-deep-green);
}

.content-nav-prev {
  text-align: left;
}

.content-nav-next {
  text-align: right;
  align-items: flex-end;
}

.content-nav-label {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--kt-light-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.content-nav-item:hover .content-nav-label {
  color: var(--kt-light-green);
}

.content-nav-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--kt-deep-green);
  transition: color 0.35s ease;
}

.content-nav-item:hover .content-nav-title {
  color: #fff;
}

/* Related scenarios */
.section-scenarios-related {
  padding: 60px 0 80px;
  background: var(--kt-gray);
}

.section-scenarios {
  padding: 80px 0 80px;
  background: #fff;
}

/* Scenarios grid: 显式 grid 布局，避免 flex row 多行 align-items: stretch 造成间距异常 */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.scenario-item {
  display: block;
  height: 100%;
}

@media (max-width: 991px) {
  .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Scenario overview cards */
.scenario-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.scenario-card:hover {
  transform: translateY(-8px);
}

.scenario-card-img {
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
}

.scenario-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.scenario-card:hover .scenario-card-img img {
  transform: scale(1.08);
}

.scenario-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.scenario-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 22px;
  z-index: 2;
}

.scenario-card-num {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--kt-light-green);
  margin-bottom: 6px;
}

.scenario-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 8px;
}

.scenario-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px;
}

.scenario-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kt-light-green);
  transition: gap 0.3s ease;
}

.scenario-card:hover .scenario-card-link {
  gap: 12px;
}

/* Scenario detail sections */
.scenario-detail {
  padding: 70px 0;
  background: #fff;
}

.scenario-detail-alt {
  background: var(--kt-gray);
}

.scenario-detail-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.scenario-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.scenario-detail-content {
  padding: 10px 0 10px 40px;
}

.scenario-detail-tag {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(129, 175, 128, 0.1);
  border: 1px solid rgba(129, 175, 128, 0.25);
  border-radius: 50px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kt-deep-green);
}

.scenario-detail-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--kt-deep-green);
  margin: 0 0 16px;
}

.scenario-detail-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  margin: 0 0 24px;
}

.scenario-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.scenario-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.scenario-detail-list li:last-child {
  border-bottom: none;
}

.scenario-detail-list i {
  color: var(--kt-light-green);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.scenario-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--kt-deep-green);
  color: #fff;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.scenario-detail-btn:hover {
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 63, 36, 0.2);
}

.scenario-detail-btn i {
  transition: transform 0.3s ease;
}

.scenario-detail-btn:hover i {
  transform: translateX(4px);
}

/* Scenario page responsive */
@media (max-width: 767px) {
  .scenario-detail {
    padding: 50px 0;
  }

  .scenario-detail-content {
    padding: 24px 0 0;
  }

  .scenario-detail-list li {
    font-size: 13px;
  }
}

/* =====================================================
   Client Cases Page
   ===================================================== */
/* Stats bar */
.case-stats {
  background: var(--kt-deep-green);
  padding: 50px 0;
}

.case-stat-item {
  text-align: center;
}

.case-stat-num {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--kt-light-green);
}

.case-stat-suffix {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--kt-light-green);
}

.case-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 8px 0 0;
}

/* Cases section */
.section-cases {
  padding: 80px 0 80px;
  background: #fff;
}

/* Filter tabs */
.case-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.case-filter-btn {
  padding: 9px 24px;
  border: 1px solid rgba(0, 63, 36, 0.15);
  border-radius: 50px;
  background: transparent;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.35s ease;
}

.case-filter-btn:hover {
  border-color: var(--kt-light-green);
  color: var(--kt-deep-green);
}

.case-filter-btn.active {
  background: var(--kt-deep-green);
  border-color: var(--kt-deep-green);
  color: #fff;
}

/* Case card */
.case-item {
  margin-bottom: 30px;
}

.case-card {
  display: block;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.case-card-img {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
}

.case-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.case-card:hover .case-card-img img {
  transform: scale(1.08);
}

.case-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: rgba(0, 63, 36, 0.85);
  border-radius: 50px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 2;
}

.case-card-body {
  padding: 24px 24px 22px;
}

.case-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--kt-deep-green);
  margin: 0 0 10px;
}

.case-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #777;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card-meta {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.case-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #999;
}

.case-card-meta i {
  font-size: 14px;
  color: var(--kt-light-green);
}

/* Case item hidden state (filter) */
.case-item.hidden {
  display: none;
}

/* Testimonials */
.section-testimonials {
  padding: 80px 0;
  background: var(--kt-gray);
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px 30px;
  height: 100%;
  position: relative;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 48px;
  color: rgba(129, 175, 128, 0.2);
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kt-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kt-light-green);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--kt-deep-green);
  margin: 0;
}

.testimonial-role {
  font-size: 12px;
  color: #999;
  margin: 2px 0 0;
}

/* Cases page responsive */
@media (max-width: 767px) {
  .case-stats {
    padding: 36px 0;
  }

  .case-stat-num,
  .case-stat-suffix {
    font-size: 32px;
  }

  .case-stat-label {
    font-size: 12px;
  }

  .section-cases {
    padding: 60px 0 50px;
  }

  .case-filter {
    gap: 8px;
    margin-bottom: 36px;
  }

  .case-filter-btn {
    padding: 7px 16px;
    font-size: 13px;
  }

  .case-card-body {
    padding: 20px 18px 18px;
  }

  .section-testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 30px 22px 24px;
  }
}

/* =====================================================
   About Us Page
   ===================================================== */
/* Section common */
.about-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 16px;
  background: rgba(129, 175, 128, 0.1);
  border: 1px solid rgba(129, 175, 128, 0.25);
  border-radius: 50px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kt-deep-green);
}

.about-eyebrow-light {
  background: rgba(129, 175, 128, 0.12);
  border-color: rgba(129, 175, 128, 0.3);
  color: var(--kt-light-green);
}

.about-section-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--kt-deep-green);
  margin: 0 0 18px;
}

/* Company intro */
.section-about-intro {
  padding: 80px 0;
  background: #fff;
}

.about-intro-content {
  padding-right: 30px;
}

.about-intro-tagline {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  color: var(--kt-light-green);
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 3px solid var(--kt-light-green);
}

.about-intro-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

.about-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--kt-gray);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--kt-deep-green);
}

.about-tag i {
  color: var(--kt-light-green);
  font-size: 16px;
}

.about-intro-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-intro-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* About stats */
.about-stats {
  background: var(--kt-deep-green);
  padding: 50px 0;
}

/* =====================================================
   About Page v2 - Complete Rewrite Styles
   ===================================================== */

/* Common about page section padding */
.section-about-founder,
.section-about-journey,
.section-about-positioning,
.section-about-global,
.section-about-segments,
.section-about-clients,
.section-about-mission,
.section-about-vision {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-about-journey,
.section-about-segments,
.section-about-mission {
  background: var(--kt-gray);
}

.section-about-founder,
.section-about-positioning,
.section-about-global,
.section-about-clients,
.section-about-vision {
  background: #fff;
}

/* About eyebrow label */
.about-eyebrow {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kt-light-green);
  margin-bottom: 14px;
  position: relative;
}


.about-eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.about-eyebrow-light::before {
  background: rgba(255, 255, 255, 0.85);
}

.about-section-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--kt-deep-green);
  margin: 0 0 20px;
}

/* ============================================
   1. Founder Section
   ============================================ */
.founder-row {
  gap: 60px 0;
}

.founder-img-col {
  margin-bottom: 30px;
}

.founder-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--kt-deep-green), #2a5040);
  box-shadow: 0 20px 50px rgba(0, 63, 36, 0.12);
  margin: 0 auto;
}

.founder-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.founder-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(255, 255, 255, 0.95) 80%, #ffffff 100%);
  z-index: 1;
}

.founder-info-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 28px 30px;
  text-align: left;
}

.founder-info-overlay .founder-name {
  font-family: 'Roboto', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--kt-deep-green);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: 2px;
}

.founder-info-overlay .founder-role {
  font-family: 'Roboto', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--kt-light-green);
  margin: 0 0 4px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.founder-info-overlay .founder-role:last-child {
  margin-bottom: 0;
}

.founder-quote {
  font-family: 'Roboto', arial, sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  padding: 24px 28px;
  background: var(--kt-gray);
  border-left: 4px solid var(--kt-light-green);
  border-radius: 0 12px 12px 0;
  margin: 0 0 40px;
}

.founder-milestones {
  position: relative;
  padding-left: 28px;
}

.founder-milestones::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(0, 63, 36, 0.15);
}

.founder-milestone {
  position: relative;
  margin-bottom: 28px;
}

.founder-milestone:last-child {
  margin-bottom: 0;
}

.founder-milestone-dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--kt-light-green);
  border-radius: 50%;
  z-index: 1;
}

.founder-milestone-year {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--kt-deep-green);
  margin-bottom: 4px;
}

.founder-milestone-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kt-deep-green);
  margin: 0 0 6px;
}

.founder-milestone-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ============================================
   2. Journey / 5-Stage Timeline
   ============================================ */
.journey-stage {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease;
}

.journey-stage:hover {
  box-shadow: 0 8px 32px rgba(0, 63, 36, 0.08);
}

.journey-stage-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(0, 63, 36, 0.15);
  margin-bottom: 28px;
}

.journey-stage-num {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(135deg, var(--kt-deep-green), var(--kt-light-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.journey-stage-meta {
  flex: 1;
  min-width: 0;
}

.journey-stage-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--kt-deep-green);
  margin: 0 0 6px;
}

.journey-stage-period {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--kt-light-green);
  margin: 0 0 12px;
}

.journey-stage-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.journey-stage-grid {
  row-gap: 20px;
}

.journey-company-card {
  background: var(--kt-gray);
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.journey-company-card:hover {
  background: #fff;
  border-color: var(--kt-light-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 63, 36, 0.08);
}

.journey-company-year {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--kt-light-green);
  margin-bottom: 8px;
}

.journey-company-name {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kt-deep-green);
  margin: 0 0 8px;
  line-height: 1.4;
}

.journey-company-period {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.journey-company-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.journey-company-card-lg {
  padding: 28px 26px;
}

.journey-company-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.journey-company-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
  align-items: flex-start;
}

.journey-company-list li:last-child {
  margin-bottom: 0;
}

.journey-company-list i {
  color: var(--kt-light-green);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.journey-company-list strong {
  color: var(--kt-deep-green);
}

.journey-tech-card,
.journey-global-card {
  background: var(--kt-gray);
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.journey-tech-card:hover,
.journey-global-card:hover {
  background: #fff;
  border-color: var(--kt-light-green);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 63, 36, 0.1);
}

.journey-tech-card i {
  display: block;
  font-size: 36px;
  color: var(--kt-light-green);
  margin-bottom: 16px;
}

.journey-tech-card h4,
.journey-global-card h4 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--kt-deep-green);
  margin: 0 0 12px;
}

.journey-tech-card p,
.journey-global-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.journey-global-card {
  text-align: left;
  position: relative;
  padding-top: 70px;
}

.journey-global-num {
  position: absolute;
  top: 20px;
  left: 22px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--kt-light-green);
  opacity: 0.25;
}

.journey-global-sub {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--kt-light-green);
  margin: 0 0 12px;
}

.journey-global-desc {
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: #666 !important;
  margin: 0 !important;
}

.journey-global-desc i {
  display: inline-block;
  font-size: 13px;
  color: var(--kt-light-green);
  margin-right: 4px;
}

.journey-stage-summary {
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(129, 175, 128, 0.08);
  border-left: 4px solid var(--kt-light-green);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.journey-stage-summary strong {
  color: var(--kt-deep-green);
}

/* ============================================
   3. Core Positioning
   ============================================ */
.positioning-pillars {
  margin-bottom: 30px;
}

.positioning-pillar {
  background: var(--kt-gray);
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  border-top: 4px solid var(--kt-light-green);
  transition: all 0.4s ease;
}

.positioning-pillar:hover {
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 63, 36, 0.1);
  transform: translateY(-4px);
}

.positioning-pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--kt-deep-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.positioning-pillar-icon i {
  font-size: 28px;
  color: #fff;
}

.positioning-pillar:hover .positioning-pillar-icon {
  background: var(--kt-light-green);
  transform: rotate(-6deg);
}

.positioning-pillar:hover .positioning-pillar-icon i {
  color: var(--kt-deep-green);
}

.positioning-pillar-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--kt-deep-green);
  margin: 0 0 14px;
  line-height: 1.4;
}

.positioning-pillar p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

.positioning-capabilities {
  margin-top: 30px;
}

.positioning-capability {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.4s ease;
  background: transparent;
}

.positioning-capability:hover {
  background: var(--kt-gray);
  transform: translateY(-4px);
}

.positioning-capability i {
  font-size: 36px;
  color: var(--kt-light-green);
  margin-bottom: 16px;
  display: block;
}

.positioning-capability h4 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--kt-deep-green);
  margin: 0 0 10px;
}

.positioning-capability p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.positioning-footer {
  margin-top: 36px;
  padding: 20px 28px;
  background: var(--kt-deep-green);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.positioning-footer strong {
  color: var(--kt-light-green);
  margin-right: 6px;
}

/* ============================================
   4. Global Network
   ============================================ */
.global-row {
  gap: 30px 0;
}

.global-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: url('../images/bg10.webp') center center / cover no-repeat;
  margin-bottom: 28px;
  position: relative;
  min-height: 450px;
}

.global-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.global-map-placeholder i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.global-map-placeholder p {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 8px;
}

.global-map-note {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.global-intro {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin: 0;
}

.global-cities {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.global-city {
  display: flex;
  gap: 20px;
  background: var(--kt-gray);
  padding: 24px 26px;
  border-radius: 14px;
  border-left: 4px solid var(--kt-light-green);
  transition: all 0.4s ease;
}

.global-city:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 63, 36, 0.1);
  transform: translateX(6px);
}

.global-city-icon {
  width: 52px;
  height: 52px;
  background: var(--kt-deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.global-city-icon i {
  font-size: 22px;
  color: var(--kt-light-green);
}

.global-city-content h3 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--kt-deep-green);
  margin: 0 0 8px;
}

.global-city-content p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ============================================
   5. Eight Business Segments
   ============================================ */
.segments-summary {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.segments-grid {
  row-gap: 24px;
}

.segment-card {
  background: #fff;
  border: 1px solid rgba(0, 63, 36, 0.08);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--kt-deep-green), var(--kt-light-green));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.segment-card:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 63, 36, 0.15);
}

.segment-card:hover::before {
  opacity: 1;
}

.segment-card > * {
  position: relative;
  z-index: 1;
}

.segment-num {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--kt-light-green);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.segment-icon {
  display: block;
  font-size: 40px;
  color: var(--kt-deep-green);
  margin: 0 auto 18px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.segment-card:hover .segment-icon {
  color: #fff;
  transform: scale(1.1);
}

.segment-card h3 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--kt-deep-green);
  margin: 0 0 12px;
  transition: color 0.4s ease;
}

.segment-card:hover .segment-num,
.segment-card:hover h3 {
  color: #fff;
}

.segment-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: color 0.4s ease;
}

.segment-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.segments-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* ============================================
   6. Service & Clients
   ============================================ */
.clients-row {
  row-gap: 40px;
  margin-bottom: 50px;
}

.clients-block {
  background: var(--kt-gray);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
}

.clients-block-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--kt-deep-green);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--kt-light-green);
}

.clients-services .client-service,
.clients-types .client-type {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.clients-services .client-service:hover,
.clients-types .client-type:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 8px 16px rgba(0, 63, 36, 0.08);
}

.clients-services .client-service i,
.clients-types .client-type i {
  font-size: 22px;
  color: var(--kt-light-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.clients-services .client-service h4,
.clients-types .client-type h4 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--kt-deep-green);
  margin: 0 0 4px;
}

.clients-services .client-service p,
.clients-types .client-type p {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.markets-row {
  row-gap: 24px;
}

.market-card {
  background: linear-gradient(135deg, var(--kt-deep-green), #1a3826);
  color: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.market-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(129, 175, 128, 0.3), transparent);
  border-radius: 50%;
}

.market-card:hover {
  transform: translateY(-6px);
}

.market-card i {
  font-size: 36px;
  color: var(--kt-light-green);
  margin-bottom: 16px;
  display: block;
}

.market-card h3 {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.market-tag {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--kt-light-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.market-card p:not(.market-tag) {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   7. Mission (with background image)
   ============================================ */
.section-about-mission {
  position: relative;
}

.about-mission-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.about-mission-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.about-mission-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 18px;
}

.about-mission-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 50px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.mission-stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mission-stat-num {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--kt-light-green);
}

.mission-stat-suffix {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--kt-light-green);
  margin-left: 2px;
}

.mission-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

.about-mission-quote {
  font-family: 'Roboto', arial, sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--kt-light-green);
  border-radius: 0 8px 8px 0;
}

/* ============================================
   8. Future Vision (kept from v1, light theme)
   ============================================ */
.section-about-vision {
  background: var(--kt-gray);
}

.about-vision-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-vision-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.about-vision-glow-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -80px;
  background: rgba(129, 175, 128, 0.1);
}

.about-vision-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -120px;
  background: rgba(0, 63, 36, 0.05);
}

.about-vision-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.25;
  color: var(--kt-deep-green);
  margin: 0 0 22px;
}

.about-vision-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 640px;
  margin: 0 auto 56px;
}

.about-vision-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}

.vision-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.vision-card:hover {
  background: #fff;
  border-color: rgba(129, 175, 128, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 63, 36, 0.1);
}

.vision-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(129, 175, 128, 0.1);
  border: 1px solid rgba(129, 175, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--kt-light-green);
  transition: all 0.4s ease;
}

.vision-card:hover .vision-card-icon {
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  transform: scale(1.08);
}

.vision-card-num {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--kt-light-green);
  margin-bottom: 6px;
}

.vision-card-label {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--kt-deep-green);
  margin: 0 0 10px;
}

.vision-card-value {
  font-size: 13px;
  line-height: 1.65;
  color: #777;
  margin: 0;
}

.vision-card-line {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-card-line::before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 175, 128, 0.3), transparent);
}

.about-vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.35s ease;
}

.about-vision-btn:hover {
  background: var(--kt-deep-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 63, 36, 0.2);
}

/* ============================================
   About v2 - Contact Section (Light Theme)
   ============================================ */
.section-about-contact {
  position: relative;
  background: var(--kt-gray);
  color: var(--kt-deep-green);
  padding: 90px 0 80px;
  overflow: hidden;
}

.about-contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.about-contact-glow-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: rgba(129, 175, 128, 0.18);
}

.about-contact-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -150px;
  background: rgba(0, 63, 36, 0.06);
}

.about-contact-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-contact-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.2;
  color: var(--kt-deep-green);
  margin: 0 0 18px;
}

.about-contact-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 50px;
}

.about-contact-cards {
  row-gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(0, 63, 36, 0.08);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: left;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--kt-light-green), var(--kt-deep-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-card:hover {
  border-color: rgba(129, 175, 128, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 63, 36, 0.1);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card-num {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--kt-light-green);
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}

.contact-card-num .contact-card-name {
  color: var(--kt-deep-green);
  font-weight: 700;
}

.contact-card-divider {
  color: rgba(0, 63, 36, 0.3);
  font-weight: 400;
  margin: 0 4px;
}

.contact-card-company {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--kt-deep-green);
  margin: 0 0 16px;
  line-height: 1.5;
}

.contact-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 10px;
}

.contact-card-desc:last-of-type {
  margin-bottom: 22px;
}

.contact-card-desc i {
  color: var(--kt-light-green);
  margin-right: 6px;
}

.contact-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kt-deep-green);
  text-decoration: none;
  padding: 10px 18px;
  background: var(--kt-gray);
  border: 1px solid rgba(0, 63, 36, 0.12);
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.contact-card-phone:hover {
  background: var(--kt-deep-green);
  color: #fff;
  border-color: var(--kt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 63, 36, 0.2);
}

.contact-card-phone i {
  font-size: 18px;
  color: var(--kt-light-green);
}

.contact-card-phone:hover i {
  color: #fff;
}

.contact-card-tag {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #999;
  margin-left: 4px;
}

.contact-card-phone:hover .contact-card-tag {
  color: rgba(255, 255, 255, 0.7);
}

.about-contact-footer {
  font-size: 15px;
  line-height: 1.85;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .section-about-contact {
    padding: 60px 0 50px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card-num {
    font-size: 18px;
  }

  .contact-card-phone {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* ============================================
   About v2 - Responsive
   ============================================ */
@media (max-width: 991px) {
  .section-about-founder,
  .section-about-journey,
  .section-about-positioning,
  .section-about-global,
  .section-about-segments,
  .section-about-clients,
  .section-about-mission,
  .section-about-vision {
    padding: 60px 0;
  }

  .journey-stage {
    padding: 28px 22px;
  }

  .journey-stage-head {
    flex-direction: column;
    gap: 12px;
  }

  .journey-stage-num {
    font-size: 36px;
  }

  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .founder-milestones {
    padding-left: 24px;
  }

  .founder-milestone-dot {
    left: -24px;
  }

  .clients-services,
  .clients-types {
    row-gap: 12px;
  }

  .about-vision-cards {
    flex-direction: column;
    gap: 18px;
  }

  .vision-card {
    max-width: 100%;
  }

  .vision-card-line {
    width: 100%;
    height: 20px;
  }

  .vision-card-line::before {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(129, 175, 128, 0.3), transparent);
  }

  .mission-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.about-stat-item {
  text-align: center;
}

.about-stat-num {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--kt-light-green);
}

.about-stat-suffix {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--kt-light-green);
}

.about-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 8px 0 0;
}

/* Core strengths */
.section-about-strengths {
  padding: 80px 0;
  background: var(--kt-gray);
}

.about-strengths-grid {
  margin-top: 20px;
}

.strength-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 32px 30px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.strength-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(129, 175, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--kt-deep-green);
  transition: all 0.4s ease;
}

.strength-card:hover .strength-card-icon {
  background: var(--kt-deep-green);
  color: var(--kt-light-green);
}

.strength-card-num {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--kt-light-green);
  margin-bottom: 4px;
}

.strength-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--kt-deep-green);
  margin: 0 0 10px;
}

.strength-card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

/* Philosophy section */
.section-about-philosophy {
  position: relative;
  padding: 90px 0;
  background: #0d1b14;
  overflow: hidden;
}

.about-philosophy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-philosophy-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-philosophy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.about-philosophy-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  border-radius: 50%;
  background: rgba(129, 175, 128, 0.08);
  filter: blur(80px);
}

.about-philosophy-header {
  position: relative;
  z-index: 1;
}

.about-philosophy-title {
  color: #fff !important;
}

.about-philosophy-desc {
  color: rgba(255, 255, 255, 0.55) !important;
}

.about-values-grid {
  position: relative;
  z-index: 1;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid rgba(129, 175, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--kt-light-green);
  transition: all 0.4s ease;
}

.value-card:hover .value-card-icon {
  border-color: var(--kt-light-green);
  background: rgba(129, 175, 128, 0.1);
  transform: scale(1.08);
}

.value-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 12px;
}

.value-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Vision section */
.section-about-vision {
  padding: 80px 0;
  background: #fff;
}

.about-vision-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-title {
  margin-bottom: 24px;
}

.about-vision-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

.about-vision-footer {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.about-vision-item {
  padding: 24px 20px;
  background: var(--kt-gray);
  border-radius: 12px;
  border-top: 3px solid var(--kt-light-green);
}

.about-vision-label {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kt-deep-green);
  margin-bottom: 10px;
}

.about-vision-value {
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* Vision section */
.section-about-vision {
  position: relative;
  padding: 100px 0 110px;
  background: var(--kt-gray);
  overflow: hidden;
}

.about-vision-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-vision-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.about-vision-glow-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -80px;
  background: rgba(129, 175, 128, 0.1);
}

.about-vision-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -120px;
  background: rgba(0, 63, 36, 0.05);
}

.about-vision-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.25;
  color: var(--kt-deep-green);
  margin: 0 0 22px;
}

.about-vision-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* Vision cards row */
.about-vision-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}

.vision-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.vision-card:hover {
  background: #fff;
  border-color: rgba(129, 175, 128, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 63, 36, 0.1);
}

.vision-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(129, 175, 128, 0.1);
  border: 1px solid rgba(129, 175, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--kt-light-green);
  transition: all 0.4s ease;
}

.vision-card:hover .vision-card-icon {
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  transform: scale(1.08);
}

.vision-card-num {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--kt-light-green);
  margin-bottom: 6px;
}

.vision-card-label {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--kt-deep-green);
  margin: 0 0 10px;
}

.vision-card-value {
  font-size: 13px;
  line-height: 1.65;
  color: #777;
  margin: 0;
}

/* Connector line between cards */
.vision-card-line {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-card-line::before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 175, 128, 0.3), transparent);
}

/* CTA button */
.about-vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--kt-light-green);
  color: var(--kt-deep-green);
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.about-vision-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(129, 175, 128, 0.25);
}

.about-vision-btn i {
  transition: transform 0.3s ease;
}

.about-vision-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   Case v2 - Industry Grouped Layout
   ============================================ */
.section-cases {
  padding: 80px 0;
  background: #fff;
}

.case-industry {
  margin-bottom: 60px;
}

.case-industry:last-child {
  margin-bottom: 0;
}

.case-industry-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--kt-deep-green);
  margin: 0 0 30px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--kt-light-green);
  text-align: left;
  position: relative;
  text-transform: capitalize;
}

.case-industry-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  transform: none;
  width: 60px;
  height: 2px;
  background: var(--kt-deep-green);
}

.cases-grid {
  row-gap: 36px;
}

.case-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.case-card:hover {
  transform: none;
  box-shadow: none;
}

.case-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  background: var(--kt-gray);
  margin-bottom: 16px;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.4s ease;
}

.case-card:hover .case-card-img img {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.case-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
  padding-top: 4px;
  line-height: 1.4;
  text-align: left;
  position: relative;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.case-card-title::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 10px 0 0;
  background: var(--kt-light-green);
  opacity: 0.6;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.case-card:hover .case-card-title {
  color: var(--kt-deep-green);
}

.case-card:hover .case-card-title::after {
  width: 48px;
  opacity: 1;
}

@media (max-width: 767px) {
  .section-cases {
    padding: 50px 0;
  }

  .case-industry {
    margin-bottom: 40px;
  }

  .case-industry-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/* About page responsive */
@media (max-width: 767px) {
  .section-about-intro {
    padding: 60px 0;
  }

  .about-intro-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-stats {
    padding: 36px 0;
  }

  .about-stat-num,
  .about-stat-suffix {
    font-size: 32px;
  }

  .section-about-strengths {
    padding: 60px 0;
  }

  .strength-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .strength-card-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .section-about-philosophy {
    padding: 60px 0;
  }

  .value-card {
    padding: 24px 16px;
    margin-bottom: 16px;
  }

  .section-about-vision {
    padding: 70px 0 80px;
  }

  .about-vision-cards {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .vision-card {
    max-width: 100%;
    padding: 28px 20px;
  }

  .vision-card-line {
    display: none;
  }
}

/* ============================================
   Journey v2 - Five Cards Layout
   ============================================ */
.journey-cards {
  row-gap: 24px;
}

.journey-cards-bottom {
  row-gap: 24px;
  margin-top: 50px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.journey-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 63, 36, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--kt-light-green), var(--kt-deep-green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.journey-card:hover {
  border-color: var(--kt-light-green);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 63, 36, 0.1);
}

.journey-card:hover::before {
  transform: scaleY(1);
}

.journey-card-year {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--kt-light-green);
  letter-spacing: 1px;
  background: rgba(129, 175, 128, 0.1);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.journey-card-title {
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--kt-deep-green);
  margin: 0 0 14px;
  line-height: 1.3;
}

.journey-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 18px;
}

.journey-card-tag {
  display: inline-block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #888;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 63, 36, 0.15);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.journey-timeline {
  position: relative;
  max-width: 920px;
  margin: 60px auto 0;
  padding: 20px 0;
}

/* Center vertical track */
.journey-timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 63, 36, 0.12);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 18px 50px;
  box-sizing: border-box;
}

.timeline-item[data-side="left"] {
  padding-right: 60px;
  text-align: right;
}

.timeline-item[data-side="right"] {
  margin-left: 50%;
  padding-left: 60px;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid var(--kt-light-green);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item[data-side="left"] .timeline-dot {
  right: -8px;
}

.timeline-item[data-side="right"] .timeline-dot {
  left: -8px;
}

.timeline-dot-highlight {
  background: var(--kt-light-green);
  box-shadow: 0 0 0 4px rgba(129, 175, 128, 0.2);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(129, 175, 128, 0.25);
}

.timeline-content {
  display: inline-block;
  background: #fff;
  padding: 16px 22px;
  border-radius: 10px;
  border: 1px solid rgba(0, 63, 36, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  max-width: 100%;
}

.timeline-content:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 175, 128, 0.35);
  box-shadow: 0 8px 20px rgba(0, 63, 36, 0.1);
}

.timeline-year {
  display: block;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kt-light-green);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.timeline-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive: stack on mobile */
@media (max-width: 767px) {
  .journey-timeline {
    padding-left: 30px;
  }

  .journey-timeline-track {
    left: 14px;
    transform: none;
  }

  .timeline-item,
  .timeline-item[data-side="left"],
  .timeline-item[data-side="right"] {
    width: 100%;
    margin-left: 0;
    padding: 12px 0 12px 36px;
    text-align: left;
  }

  .timeline-item[data-side="left"] .timeline-dot,
  .timeline-item[data-side="right"] .timeline-dot {
    left: 6px;
    right: auto;
  }

  .timeline-content {
    width: 100%;
  }
}