/* -------------------------------------------------------------
 * Yusheng Technology - Premium Official Website Design System
 * ------------------------------------------------------------- */


/* CSS Custom Properties / Global Design Tokens */
:root {
  /* Color Palette */
  --primary-navy: #ffffff;
  /* Deep warm charcoal black (removing navy blue) */
  --primary-navy-light: #ffffff;
  /* Muted warm dark grey (removing navy blue light) */
  --accent-gold: #C0392B;
  /* Primary red accent (replacing champagne sand gold) */
  --accent-gold-glow: rgba(192, 57, 43, 0.4);
  --accent-gold-bright: #D01937;
  --accent-red: #C0392B;
  /* Bright premium red (replacing high-end shiny gold) */

  --bg-sand: #F5F2EB;
  /* Earthy sand warm grey */
  --bg-sand-dark: #EAE6DD;
  /* Muted clay grey */
  --bg-light: #F9FAFB;
  /* Clean ice-white */
  --text-dark: #1E232A;
  /* Charcoal text */
  --text-light: #FFFFFF;
  /* Plain white text */
  --text-muted: #6C7A89;
  /* Neutral muted grey text (removing blue tint) */
  --accent-red: #C0392B;
  /* High-contrast highlight red */
  --brand-green-glow: rgba(229, 57, 53, 0.35);
  /* Harmonized red glow for hover states */

  /* Font Family stacks */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', 'Inter', -apple-system, sans-serif;

  /* Layout Standards */
  --header-height: 80px;
  --section-padding-x: 40px;
  --content-max-width: 1480px;
  --border-radius: 12px;
  --transition-smooth: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.08);
  --box-shadow-gold: 0 10px 25px rgba(229, 57, 53, 0.2);
}

/* Base Styles & Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  background-color: var(--bg-light);
  font-family: var(--font-sans);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-sand);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8B1A1A;
}

/* -------------------------------------------------------------
 * Layout Components: Header & Navigation
 * ------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 1);
  /* Deep transparent Navy background */
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1300px; */
  height: 80px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold-bright);
  display: block;
  line-height: 24px;
  height: 24px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(26, 29, 32, 0.7);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--accent-gold-bright);
}

.nav-link:hover::after,
.nav-link.active-link::after {
  width: 100%;
}

@media screen and (max-width: 1200px) and (min-width: 984px) {
  #nav-header .header-container {
    padding: 0 28px;
  }

  #nav-header .logo a {
    gap: 10px;
  }

  #nav-header .logo-img {
    height: 48px;
  }

  #nav-header .logo-main {
    font-size: 21px !important;
    letter-spacing: 1px;
  }

  #nav-header .logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
  }

  #nav-header .nav-menu {
    gap: 18px;
  }

  #nav-header .nav-link {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

/* Header scrolled state modification */
.main-header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Language Switcher Button Group */
.lang-switcher {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(26, 29, 32, 0.6);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn.active {
  background: var(--accent-gold-bright);
  color: var(--text-light);
}

.lang-btn:hover:not(.active) {
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.06);
}

/* Mobile Hamburger Menu icon */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
 * Layout Components: Hero Banner & Video Background
 * ------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(20, 14, 14, 0.6),
      rgba(20, 14, 14, 0.5),
      rgba(20, 14, 14, 0.75));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  margin-top: 50px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s forwards cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s forwards cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s forwards cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s;
  flex-wrap: wrap;
}

/* Premium Button Designs */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-bright), #991B1B);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: var(--box-shadow-gold);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(229, 57, 53, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 35px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
}

.btn-glass:hover {
  background: var(--text-light);
  color: rgba(26, 29, 32, 0.7);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------
 * Layout Components: Stats Section (Mesh Grid)
 * ------------------------------------------------------------- */
.stats-section {
  background: var(--primary-navy);
  position: relative;
  padding: 80px 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.section-container3 {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.section-container2 {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding-x: 24px;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --section-padding-x: 18px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
}

/* Mesh-border separator line */
.stats-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stat-card {
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-card:last-child {
  border-right: none;
}

.counter-val {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  line-height: 1;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-title {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* -------------------------------------------------------------
 * Layout Components: Generic Section Typography & Reveal
 * ------------------------------------------------------------- */
.main-section {
  padding: 120px 0;
}

.bg-earth {
  background-color: var(--bg-sand);
}

.bg-light-grey {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.section-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-bright);
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: rgba(26, 29, 32, 0.7);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: #5E6977;
  line-height: 1.7;
}

#platforms-section,
#social-waterfall-feed,
#presence-section,
#enterprise-showcase,
#contact-section {
  padding-top: clamp(82px, 8vw, 112px);
  padding-bottom: clamp(82px, 8vw, 112px);
}

/* -------------------------------------------------------------
 * Core Brand Grid Showcase (Home Page)
 * ------------------------------------------------------------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.brand-card-home {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-card-image-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.brand-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.brand-card-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-card-name {
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.brand-card-desc {
  font-size: 14px;
  color: rgba(26, 29, 32, 0.7);
  line-height: 1.7;
  margin-bottom: 30px;
}

.brand-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-card-cta {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(26, 29, 32, 0.7);
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 4px;
}

/* Glowing halo animation card effects */
.brand-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--brand-green-glow);
}

.brand-card-home:hover .brand-card-image-box img {
  transform: scale(1.08);
}

/* -------------------------------------------------------------
 * Infinite Trust Certifications Ribbon
 * ------------------------------------------------------------- */
.trust-ribbon {
  background: var(--bg-light);
  padding: 40px 0;
  border-bottom: 1px solid #ECE9E1;
  border-top: 1px solid #ECE9E1;
  overflow: hidden;
  position: relative;
}

.trust-slider-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  max-width: 1680px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.trust-logo-box {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #ECE9E1;
  padding: 20px;
  cursor: zoom-in;
  position: relative;
  transition: var(--transition-smooth);
}

.trust-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(208, 25, 55, 0.1);
  border-color: var(--accent-gold);
}

.trust-logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.95;
  filter: none;
  transition: var(--transition-smooth);
}

.trust-logo-box:hover img {
  opacity: 1;
  transform: scale(1.05);
}

@media screen and (max-width: 992px) {
  .trust-slider-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .trust-logo-box {
    height: 160px;
    padding: 15px;
  }
}

@media screen and (max-width: 576px) {
  .trust-slider-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .trust-logo-box {
    height: 130px;
    padding: 10px;
  }
}

/* -------------------------------------------------------------
 * Social PR Showcase Redesign (Layout 3 Style)
 * ------------------------------------------------------------- */

.social-cards-grid-wrapper {
  width: 100%;
  overflow: visible;
  scrollbar-width: none;
  /* Firefox */
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
}

.social-cards-grid-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.social-cards-grid-wrapper.dragging {
  cursor: grabbing;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  min-width: 0;
}

.social-card-item {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(320px, 28vw, 460px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  color: inherit;
}

.social-card-item:focus-visible {
  outline: 3px solid rgba(208, 25, 55, 0.38);
  outline-offset: 4px;
}

.media-mentions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(34px, 5vw, 56px);
}

.media-mention-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(30, 35, 42, 0.08);
  box-shadow: 0 12px 30px rgba(30, 35, 42, 0.04);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.media-mention-card:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 25, 55, 0.28);
  box-shadow: 0 18px 38px rgba(30, 35, 42, 0.08);
}

.media-mention-card strong {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.media-mention-card span:last-child {
  color: #5E6977;
  font-size: 13px;
  line-height: 1.6;
}

.media-mention-meta {
  color: var(--accent-gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.social-card-item:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 25px rgba(208, 25, 55, 0.12); */
}

.social-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-card-item:hover .social-card-img {
  transform: scale(1.06);
}

/* Glassmorphic Platform Badge */
.social-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.social-card-item:hover .social-card-badge {
  transform: rotate(12deg) scale(1.1);
}

.social-card-badge.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
}

.social-card-badge.tiktok {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-card-badge.facebook {
  background: #1877F2;
  border: none;
}

/* Video Play Overlay */
.social-card-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.social-card-item:hover .social-card-play-btn {
  opacity: 1;
}

.play-icon-svg {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-card-item:hover .play-icon-svg {
  transform: scale(1.1);
}

/* Card Overlay (bottom gradient & content) */
.social-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.45) 0%, rgba(15, 14, 12, 0.1) 30%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}

.social-card-user {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
}

.social-card-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-sans);
}

/* Interaction Stats Row */
.social-card-stats {
  display: flex;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.social-card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-sans);
}

/* ── Premium Social Media Platform Links ── */
.social-links-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 48px;
}

.social-follow-note {
  max-width: 720px;
  margin: 52px auto 0;
  color: #5E6977;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.social-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 99px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.social-link-pill svg {
  transition: transform 0.3s ease;
}

.social-link-pill:hover svg {
  transform: scale(1.1);
}

.social-link-pill.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.social-link-pill.pinterest:hover {
  background: #bd081c;
  border-color: #bd081c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(189, 8, 28, 0.3);
}

.social-link-pill.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.28);
}

.social-link-pill.tiktok:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link-pill.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

/* Responsive Overrides */
@media screen and (max-width: 1400px) {
  .social-cards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1100px) {
  .media-mentions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .media-mentions-grid {
    grid-template-columns: 1fr;
  }

  .social-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-card-item {
    height: 618px;
  }

  .social-links-bar {
    gap: 12px;
    padding-top: 30px;
    margin-top: 40px;
  }

  .social-link-pill {
    padding: 10px 20px;
    font-size: 13px;
  }
}




/* -------------------------------------------------------------
 * About Us Page specific styles (Milestone timeline)
 * ------------------------------------------------------------- */
.about-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(rgba(20, 14, 14, 0.95), rgba(20, 14, 14, 0.97)), url('../images/company/headquarters-lobby.webp');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.about-hero .section-title {
  color: var(--text-light);
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 40px;
}

.mission-card,
.vision-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 50px;
  box-shadow: var(--box-shadow-premium);
  border-top: 4px solid var(--accent-gold-bright);
}

.about-subcard-title {
  font-size: 24px;
  color: rgba(26, 29, 32, 0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-subcard-desc {
  color: #5E6977;
  font-size: 15px;
  line-height: 1.8;
}

/* Milestones Timeline */
.timeline-section {
  position: relative;
  padding: clamp(96px, 9vw, 128px) 0 clamp(58px, 6vw, 82px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F5EF 14%, var(--bg-sand) 78%, var(--bg-light) 100%);
}

.timeline-header-wrap {
  margin-bottom: 30px;
  text-align: left;
}

.timeline-brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.timeline-logo-svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.timeline-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-gold-bright);
  margin: 0;
  text-transform: uppercase;
}

.timeline-title-pinyin {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.timeline-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #5E6977;
  max-width: 800px;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
}

/* Default vertical layout (Mobile first) */
.timeline-spine {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(208, 25, 55, 0.25);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-wave-svg {
  display: none;
}

.timeline-event {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.timeline-event:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gold-bright);
  transform: translateX(-50%);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 10px rgba(208, 25, 55, 0.4);
  transition: var(--transition-smooth);
}

.timeline-event:hover .timeline-dot {
  background: var(--accent-gold-bright);
  transform: translateX(-50%) scale(1.3);
}

.timeline-content-card {
  width: 45%;
  background: var(--text-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow-premium);
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-event:nth-child(even) {
  justify-content: flex-end;
}

.timeline-event:nth-child(odd) .timeline-content-card {
  text-align: right;
  margin-right: auto;
}

.timeline-event:nth-child(even) .timeline-content-card {
  margin-left: auto;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  margin-bottom: 12px;
  display: block;
}

.timeline-text {
  font-size: 14px;
  color: #5E6977;
  line-height: 1.7;
}

/* Desktop styles (min-width: 769px) */
@media screen and (min-width: 769px) {
  .timeline-spine {
    display: block !important;
    position: absolute;
    top: 330px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(208, 25, 55, 0.1) 0%, var(--accent-gold-bright) 50%, rgba(208, 25, 55, 0.1) 100%);
    transform: translateY(-50%);
    z-index: 1;
  }

  .timeline-wave-svg {
    display: none !important;
  }

  .timeline-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold-bright) rgba(0, 0, 0, 0.05);
    -webkit-overflow-scrolling: touch;
  }

  .timeline-scroll-container::-webkit-scrollbar {
    height: 6px;
  }

  .timeline-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 99px;
  }

  .timeline-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold-bright);
    border-radius: 99px;
  }

  .timeline-scroll-container.dragging {
    cursor: grabbing;
  }

  .timeline-container {
    width: 1620px;
    height: 660px;
    margin: 0 auto;
    max-width: none;
  }

  .timeline-event {
    position: absolute;
    width: 0;
    height: 0;
    margin-bottom: 0;
    display: block;
    z-index: 2;
  }

  .timeline-event.above {
    top: 330px;
  }

  .timeline-event.below {
    top: 330px;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gold-bright);
    border: 3.5px solid #FFFFFF;
    box-shadow: 0 0 10px rgba(208, 25, 55, 0.4);
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: 3;
  }

  .timeline-event:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 15px var(--accent-gold-bright);
  }

  .timeline-event.above .timeline-content-card {
    position: absolute;
    bottom: 40px;
    left: 0;
  }

  .timeline-event.above::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 40px;
    background: rgba(208, 25, 55, 0.15);
    z-index: 1;
    transition: var(--transition-smooth);
  }

  .timeline-event.below .timeline-content-card {
    position: absolute;
    top: 40px;
    left: 0;
  }

  .timeline-event.below::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 40px;
    background: rgba(208, 25, 55, 0.15);
    z-index: 1;
    transition: var(--transition-smooth);
  }

  .timeline-event:hover::before {
    background: var(--accent-gold-bright);
    width: 2px;
  }

  .timeline-content-card {
    background: rgba(255, 255, 255, 1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    padding: 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
    width: 280px !important;
    text-align: left !important;
    margin: 0 !important;
    transition: var(--transition-smooth) !important;
    /* border-left: 3px solid rgba(208, 25, 55, 0.3) !important; */
  }

  .timeline-event:hover .timeline-content-card {
    background: #FFFFFF !important;
    box-shadow: 0 15px 40px rgba(208, 25, 55, 0.08) !important;
    /* border-color: rgba(208, 25, 55, 0.15) !important; */
    /* border-left-color: var(--accent-gold-bright) !important; */
  }

  .timeline-event.above:hover .timeline-content-card {
    transform: translateY(-8px);
  }

  .timeline-event.below:hover .timeline-content-card {
    transform: translateY(8px);
  }

  .timeline-year {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.1;
    color: var(--accent-gold-bright);
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .timeline-year .year-num {
    font-size: 28px;
  }

  .timeline-year .year-unit {
    font-size: 14px;
    font-weight: 700;
  }

  .timeline-event-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
  }

  .timeline-text {
    font-size: 14px;
    color: #6C7A89;
    line-height: 1.6;
    margin-top: 5px;
  }
}

/* Facility Showroom Grid */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 60px;
}

.facility-text {
  padding-right: 40px;
}

.facility-images-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.facility-collage-box {
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  box-shadow: var(--box-shadow-premium);
}

.facility-collage-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.facility-collage-box:hover img {
  transform: scale(1.08);
}

/* -------------------------------------------------------------
 * Brands/Products Page dynamic catalog & interactive quick view
 * ------------------------------------------------------------- */
.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-chip {
  background: #EAE6DD;
  color: var(--text-dark);
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--accent-gold-bright);
  color: var(--text-light);
}

/* Products grid & Apple-esque Minimalist styling */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-image-container {
  height: 280px;
  background: #FFFFFF;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.06));
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-gold-bright);
  color: var(--primary-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.product-info-box {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: #5E6977;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Card hover animation scale up */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

/* Quick View Modal styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(20, 14, 14, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: var(--text-light);
  width: 90%;
  max-width: 960px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-visual-box {
  background: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ECE9E1;
}

.modal-active-img-wrapper {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.modal-active-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.modal-thumbnails {
  display: flex;
  gap: 10px;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  border: 2px solid #ECE9E1;
  border-radius: 4px;
  cursor: pointer;
  padding: 3px;
  overflow: hidden;
}

.modal-thumb.active-thumb,
.modal-thumb:hover {
  border-color: var(--accent-gold-bright);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-specs-box {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-specs-list {
  margin: 20px 0 30px 0;
}

.modal-spec-item {
  font-size: 13px;
  color: #5E6977;
  padding: 8px 0;
  border-bottom: 1px solid #ECE9E1;
}

.modal-spec-item strong {
  color: var(--text-dark);
}

/* -------------------------------------------------------------
 * Global Presence & Interactive Map SVG Styles
 * ------------------------------------------------------------- */
.map-description {
  text-align: center;
  font-size: 15px;
  color: #5E6977;
  max-width: 600px;
  margin: -50px auto 40px auto;
}

.interactive-map-wrapper {
  background: var(--primary-navy);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow-premium);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.world-svg-container {
  width: 100%;
  height: auto;
  position: relative;
}

.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* SVG Map Paths Colorations */
.map-land {
  fill: #2A1F1F;
  stroke: var(--primary-navy);
  stroke-width: 0.8px;
  transition: var(--transition-smooth);
}

.map-land:hover {
  fill: #3D2E2E;
}

/* Hotspots pulsating keyframes styling */
.map-hotspot {
  cursor: pointer;
}

.hotspot-circle-div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--accent-gold-bright);
  border: 1.5px solid #FFFFFF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.hotspot-pulse-div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--accent-gold-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseScale 2s infinite ease-out;
}

.map-hotspot:hover .hotspot-circle-div {
  background-color: #8B1A1A;
  width: 20px;
  height: 20px;
}

/* Location Pins on the Map */
.map-location-pin {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: auto;
  z-index: 5;
  transition: z-index 0.2s ease;
}

.map-location-pin:hover {
  z-index: 15;
}

.pin-icon-wrap {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /* background: #FFFFFF; */
  /* border: 1px solid rgba(28, 27, 27, 0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12); */
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.map-location-pin:hover .pin-icon-wrap {
  transform: translate(-50%, -50%) scale(1.25);
  border-color: var(--accent-gold-bright);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pin-icon-wrap svg {
  display: block;
}

/* Custom icons that have colored shapes built-in */
.pin-icon-wrap.factory-wrap,
.pin-icon-wrap.company-wrap {
  background: transparent;
  border: none;
  box-shadow: none;
  width: 18px;
  height: 18px;
}

.map-location-pin:hover .pin-icon-wrap.factory-wrap,
.map-location-pin:hover .pin-icon-wrap.company-wrap {
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: none;
}

.pin-label {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  color: #1C1B1B;
  /* background: rgba(245, 242, 235, 0.88); */
  /* border: 1.5px solid rgba(28, 27, 27, 0.12); */
  /* border-radius: 3px; */
  padding: 1px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  line-height: 1.1;
  text-align: center;
}

.map-location-pin:hover .pin-label {
  background: #FFFFFF;
  border-color: var(--accent-gold-bright);
  color: var(--text-dark);
}

/* Position classes for labels relative to the pin's center */
.map-location-pin.pos-top .pin-label {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.map-location-pin.pos-top:has(.factory-wrap) .pin-label,
.map-location-pin.pos-top:has(.company-wrap) .pin-label {
  bottom: 12px;
}

.map-location-pin.pos-bottom .pin-label {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.map-location-pin.pos-bottom:has(.factory-wrap) .pin-label,
.map-location-pin.pos-bottom:has(.company-wrap) .pin-label {
  top: 12px;
}

.map-location-pin.pos-left .pin-label {
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.map-location-pin.pos-left:has(.factory-wrap) .pin-label,
.map-location-pin.pos-left:has(.company-wrap) .pin-label {
  right: 12px;
}

.map-location-pin.pos-right .pin-label {
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

.map-location-pin.pos-right:has(.factory-wrap) .pin-label,
.map-location-pin.pos-right:has(.company-wrap) .pin-label {
  left: 12px;
}

/* Premium Search Highlight Glow Effect */
@keyframes pinGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(179, 143, 88, 0.8);
  }

  70% {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 0 12px rgba(179, 143, 88, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(179, 143, 88, 0);
  }
}

.map-location-pin.highlighted {
  z-index: 20;
}

.map-location-pin.highlighted .pin-icon-wrap {
  border: 1px solid var(--accent-gold-bright) !important;
  box-shadow: 0 0 12px var(--accent-gold-bright) !important;
}

/* Exclude custom factory/company SVGs from simple border styling, but give them glow shadow */
.map-location-pin.highlighted .pin-icon-wrap.factory-wrap,
.map-location-pin.highlighted .pin-icon-wrap.company-wrap {
  border: none !important;
  filter: drop-shadow(0 0 6px var(--accent-gold-bright));
}

/* Add pulsing ripple behind highlighted icons */
.map-location-pin.highlighted .pin-icon-wrap::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-gold-bright);
  animation: pinGlow 2s infinite ease-out;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

/* Keep label highlighted and readable when pin matches search query */
.map-location-pin.highlighted .pin-label {
  background: #FFFFFF !important;
  border-color: var(--accent-gold-bright) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 12px rgba(179, 143, 88, 0.25) !important;
  z-index: 20;
}

.map-location-pin.active {
  z-index: 18;
}

.map-location-pin.active .pin-icon-wrap {
  border-color: var(--accent-gold-bright) !important;
  box-shadow: 0 0 8px rgba(179, 143, 88, 0.5) !important;
}

.map-location-pin.active .pin-label {
  background: #FFFFFF !important;
  border-color: var(--accent-gold-bright) !important;
  color: var(--text-dark) !important;
}

/* Floating Map Legend */
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(245, 242, 235, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(28, 27, 27, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin: 0 0 2px 0;
  border-bottom: 1.5px solid rgba(28, 27, 27, 0.08);
  padding-bottom: 4px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #5E6977;
  font-weight: 600;
}

.legend-item svg {
  flex-shrink: 0;
}

.legend-text {
  white-space: nowrap;
}

/* Responsive Map Pins styling on smaller viewports */
@media screen and (max-width: 768px) {
  .pin-label {
    display: none !important;
  }

  .map-legend {
    display: none !important;
  }

  .pin-icon-wrap {
    width: 10px !important;
    height: 10px !important;
    border-width: 0.5px !important;
  }

  .pin-icon-wrap svg {
    width: 6px !important;
    height: 6px !important;
  }

  .pin-icon-wrap.factory-wrap,
  .pin-icon-wrap.company-wrap {
    width: 11px !important;
    height: 11px !important;
  }

  .pin-icon-wrap.factory-wrap svg,
  .pin-icon-wrap.company-wrap svg {
    width: 9px !important;
    height: 9px !important;
  }
}

/* Dynamic Floating Map Info Box */
.map-floating-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--accent-gold-bright);
  border-radius: 8px;
  padding: 20px;
  color: var(--text-dark);
  width: 280px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.map-floating-card.active {
  opacity: 1;
}

.map-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent-gold-bright);
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 4px;
}

.map-card-metric {
  font-size: 12px;
  font-weight: 700;
  color: #2ECC71;
  margin-bottom: 8px;
}

.map-card-desc {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Regional Details Showcase Grid */
.regional-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.region-detail-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  transition: var(--transition-smooth);
}

.region-detail-card:hover {
  transform: translateY(-5px);
}

.region-img-box {
  height: 200px;
  overflow: hidden;
}

.region-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-info {
  padding: 30px;
}

.region-name {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.region-metric {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  margin-bottom: 12px;
  display: block;
}

.region-desc {
  font-size: 13px;
  color: #5E6977;
  line-height: 1.6;
}

/* -------------------------------------------------------------
 * Contact Us - Interactive Form & Global Directory layout
 * ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 120px;
}

#contact-section {
  background: linear-gradient(180deg, var(--bg-sand) 0%, #EFEAE1 100%);
}

#contact-section .reveal-fade {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-single-layout {
  max-width: 880px;
  margin: 0 auto;
}

.contact-lead-layout {
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.b2b-form-container {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 50px;
  box-shadow: var(--box-shadow-premium);
}

.contact-lead-form {
  background: #ffffff;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(30, 35, 42, 0.08);
  box-shadow: 0 14px 34px rgba(30, 35, 42, 0.06);
}

.contact-form-heading {
  margin-bottom: 24px;
}

.contact-form-heading h3 {
  font-size: 22px;
  color: #1E232A;
  margin-bottom: 8px;
}

.contact-form-heading p {
  color: #5E6977;
  font-size: 14px;
  line-height: 1.7;
}

.contact-submit-btn {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .contact-lead-layout {
    grid-template-columns: 1fr;
  }
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-sand);
  border: 1px solid #EAE6DD;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold-bright);
  background: #FFFFFF;
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.2);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* B2B branch cards directory list */
.offices-directory-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.office-branch-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow-premium);
  border-left: 4px solid var(--accent-red);
  transition: var(--transition-smooth);
}

.office-branch-card:hover {
  transform: translateX(5px);
  border-left-color: var(--accent-gold-bright);
}

.office-name {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.office-detail-row {
  font-size: 13px;
  color: #5E6977;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-detail-row strong {
  color: var(--text-dark);
}

/* -------------------------------------------------------------
 * GDPR Page Structured layout rules
 * ------------------------------------------------------------- */
.privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--text-light);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-premium);
}

.privacy-block {
  margin-bottom: 30px;
}

.privacy-block h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.privacy-block p {
  font-size: 14px;
  color: #5E6977;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-block ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 14px;
  color: #5E6977;
  margin-bottom: 15px;
}

.privacy-block li {
  margin-bottom: 6px;
}

/* -------------------------------------------------------------
 * Universal Footer layouts
 * ------------------------------------------------------------- */
.main-footer {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand-box p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 15px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #6B6F76;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  color: var(--accent-gold-bright);
}

.footer-links-col h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links-col ul li a:hover {
  color: var(--accent-gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-rights {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.8;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--accent-gold-bright);
}

/* -------------------------------------------------------------
 * Scroll Reveal Animations Keyframes & CSS transitions
 * ------------------------------------------------------------- */
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollTrust {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes pulseScale {
  0% {
    r: 4px;
    opacity: 1;
  }

  100% {
    r: 22px;
    opacity: 0;
  }
}

/* Scroll Fade & Slide Transitions definitions */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity;
}

.reveal-fade.revealed {
  opacity: 1;
}

.reveal-slide-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.82s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.82s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}

.reveal-slide-up.revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-fade.revealed {
  will-change: auto;
}

/* -------------------------------------------------------------
 * Media Breakpoints (Fluid Mobile Responsiveness)
 * ------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .stats-grid {
    gap: 20px;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-waterfall {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-container {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }

  .modal-visual-box {
    border-right: none;
    border-bottom: 1px solid #ECE9E1;
    padding: 30px;
  }

  .modal-active-img-wrapper {
    height: 240px;
  }

  .modal-specs-box {
    padding: 30px;
  }
}

@media screen and (max-width: 983px) {
  :root {
    --header-height: 70px;
  }

  .header-container {
    padding: 0 20px;
  }

  /* Hamburger Menu Toggle rendering */
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--primary-navy);
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px 0;
    transition: 0.5s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 367px) {
  #nav-header .header-container {
    padding: 0 14px;
  }

  #nav-header .logo a {
    gap: 8px;
    min-width: 0;
  }

  #nav-header .logo-img {
    height: 44px;
  }

  #nav-header .logo-text {
    min-width: 0;
  }

  #nav-header .logo-main {
    font-size: 19px !important;
    line-height: 20px;
    height: 20px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }

  #nav-header .logo-sub {
    font-size: 8px;
    line-height: 12px;
    letter-spacing: 2.4px;
    margin-top: 0;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }

  .stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-card,
  .vision-card {
    padding: 30px;
  }

  .timeline-scroll-container {
    overflow-x: visible;
  }

  .timeline-container {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .timeline-wave-svg {
    display: none !important;
  }

  .timeline-event {
    left: 0 !important;
    top: 0 !important;
    position: relative !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    display: flex !important;
    height: auto !important;
  }

  .timeline-event::before {
    display: none !important;
  }

  .timeline-spine {
    left: 20px !important;
    display: block !important;
    transform: none !important;
  }

  .timeline-dot {
    left: 20px !important;
    top: 25px !important;
    transform: translateX(-50%) !important;
  }

  .timeline-content-card {
    width: calc(100% - 50px) !important;
    margin-left: 50px !important;
    text-align: left !important;
    background: var(--text-light) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--box-shadow-premium) !important;
    padding: 24px !important;
    border-radius: 8px !important;
    border-left: none !important;
  }

  .timeline-year {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 2px !important;
  }

  .timeline-year .year-num {
    font-size: 22px !important;
    font-weight: 800 !important;
  }

  .timeline-year .year-unit {
    font-size: 13px !important;
    font-weight: 700 !important;
  }

  .timeline-event-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    display: block !important;
    margin-bottom: 10px !important;
  }

  .timeline-text {
    font-size: 13px !important;
    color: #5E6977 !important;
    line-height: 1.7 !important;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .regional-focus-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* -------------------------------------------------------------
 * Premium Global Image Zoom & Lightbox System
 * ------------------------------------------------------------- */
.zoomable-img-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
}

.zoomable-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 2;
}

.zoomable-img-container:hover::after {
  background: rgba(20, 14, 14, 0.15);
}

/* Floating interactive zoom hint badge on hover */
.zoom-hint-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(20, 14, 14, 0.85);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--accent-gold-bright);
  border: 1px solid var(--accent-gold-bright);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 5;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.zoomable-img-container:hover .zoom-hint-badge {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Specific tooltip style for trust logo box */
.trust-logo-box::after {
  content: '🔍';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  font-size: 12px;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.trust-logo-box:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Global Lightbox Glassmorphism Overlay */
.global-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 14, 14, 0.90);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.global-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Lightbox Content Container */
.lightbox-container {
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.global-lightbox-overlay.active .lightbox-container {
  transform: scale(1);
}

/* Image Visual Box with Hover Zoom detailing */
.lightbox-img-wrapper {
  width: 100%;
  height: 70vh;
  background: #FFFFFF;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: crosshair;
  /* Crosshair tells user they can move mouse to detail */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.15s ease-out, transform-origin 0.1s ease-out;
  transform: scale(1);
  pointer-events: none;
  /* Let pointer events pass to wrapper for pan math */
}

/* Lightbox spec metadata & interactive hints */
.lightbox-spec-bar {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  color: var(--text-light);
}

.lightbox-hint-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-hint-text::before {
  content: '💡';
}

/* Premium Lightbox Close Button */
.lightbox-close-btn {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
  z-index: 10000;
}

.lightbox-close-btn:hover {
  background: var(--accent-gold-bright);
  color: var(--primary-navy);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 15px var(--accent-gold-bright);
}

/* Hover-zoom styles for existing Quick View modal in brands.js */
.modal-active-img-wrapper {
  overflow: hidden;
  cursor: crosshair;
}

.modal-active-img-wrapper img {
  transition: transform 0.15s ease-out, transform-origin 0.1s ease-out;
}

@media screen and (max-width: 768px) {
  .lightbox-img-wrapper {
    height: 55vh;
  }

  .lightbox-close-btn {
    top: -50px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}



/* -------------------------------------------------------------
 * Map Split Layout & Dynamic Dashboard
 * ------------------------------------------------------------- */
.map-split-layout {
  display: grid;
  grid-template-columns: 6.5fr 3.5fr;
  gap: 40px;
  background: var(--primary-navy);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-area {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Local Rep Search Box */
.local-rep-search {
  display: flex;
  margin-bottom: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 5px 20px;
  backdrop-filter: blur(5px);
  max-width: 400px;
}

.local-rep-search input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
}

.local-rep-search input::placeholder {
  color: var(--text-muted);
}

.local-rep-search .search-btn {
  background: transparent;
  border: none;
  color: var(--accent-gold-bright);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-smooth);
}

.local-rep-search .search-btn:hover {
  transform: scale(1.1);
}

/* Data Dashboard Panel */
.map-info-panel {
  background: var(--text-light);
  border-radius: 8px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.map-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold-bright);
}

.panel-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECE9E1;
}

.live-indicator {
  font-size: 10px;
  font-weight: 700;
  color: #2ECC71;
  letter-spacing: 1px;
  animation: flash 2s infinite;
  display: block;
  margin-bottom: 8px;
}

@keyframes flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

#panel-region-title {
  font-size: 24px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.data-block {
  margin-bottom: 25px;
}

.data-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8E98A5;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.data-value {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
}

.data-value.highlight-green {
  color: #27AE60;
  font-size: 18px;
}

.data-value.link {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition-smooth);
}

.data-value.link:hover {
  color: var(--accent-gold-bright);
}

.map-hotspot.active .hotspot-circle {
  fill: var(--text-light);
  r: 10px;
}

@media screen and (max-width: 992px) {
  .map-split-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* -------------------------------------------------------------
 * Enterprise Showcase Section (企业风采)
 * ------------------------------------------------------------- */
#enterprise-showcase {
  position: relative;
  background: linear-gradient(180deg, var(--bg-sand) 0%, #F7F4EE 100%);
}

.enterprise-showcase-container {
  max-width: var(--content-max-width);
}

.enterprise-activity-feature {
  max-width: 1400px;
  margin: 0 auto;
}

.enterprise-activity-copy {
  padding-left: clamp(0px, 2vw, 24px);
}

.enterprise-activity-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin: 0;
}

.enterprise-activity-image {
  aspect-ratio: 16 / 8.5;
  border-radius: 8px;
}

/* Glassmorphic Tabs Styles */
.enterprise-sub-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.5px;
}

.enterprise-sub-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* Office Grid (Symmetrical 2x2 Layout) */
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.office-grid .collage-item {
  aspect-ratio: 16 / 10;
}

/* Activity Grid (Custom 3-Column Layout to handle wide panoramic image) */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.activity-grid .collage-item-wide {
  grid-column: span 3;
  aspect-ratio: 3 / 1;
}

.activity-grid .collage-item-standard {
  aspect-ratio: 4 / 3;
}

/* Collage Item base styles */
.collage-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, box-shadow;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Image overlay labels */
.collage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 14, 14, 0.85) 0%, rgba(20, 14, 14, 0.3) 50%, rgba(20, 14, 14, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.collage-tag {
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

/* Hover effects */
.collage-item:hover,
.collage-item-wide:hover,
.collage-item-standard:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

.collage-item:hover img,
.collage-item-wide:hover img,
.collage-item-standard:hover img {
  transform: scale(1.06);
}

.collage-item:hover .collage-overlay,
.collage-item-wide:hover .collage-overlay,
.collage-item-standard:hover .collage-overlay {
  opacity: 1;
}

.collage-item:hover .collage-tag,
.collage-item-wide:hover .collage-tag,
.collage-item-standard:hover .collage-tag {
  transform: translateY(0);
}

/* Shared Item Styles for wide and standard versions */
.collage-item-wide,
.collage-item-standard {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, box-shadow;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.collage-item-wide img,
.collage-item-standard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Lightbox zoomable styling alignment */
.collage-item.zoomable-img-container,
.collage-item-wide.zoomable-img-container,
.collage-item-standard.zoomable-img-container {
  cursor: zoom-in;
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {
  .enterprise-activity-feature {
    grid-template-columns: 1fr;
  }

  .enterprise-activity-copy {
    padding-left: 0;
    text-align: center;
  }

  .office-grid {
    gap: 18px;
  }

  .activity-grid {
    gap: 18px;
  }

  .enterprise-sub-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .enterprise-activity-image {
    aspect-ratio: 4 / 3;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .office-grid .collage-item {
    aspect-ratio: 3 / 2;
  }

  .activity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activity-grid .collage-item-wide {
    grid-column: span 1;
    aspect-ratio: 2 / 1;
  }

  .activity-grid .collage-item-standard {
    aspect-ratio: 3 / 2;
  }

  .enterprise-sub-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

/* =============================================================
 * UPGRADE: Dark Stats Bar
 * ============================================================= */
.stats-section {
  background: #0F0E0C;
  padding: 90px 0;
}

.stats-section .stat-card {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
}

.stats-section .stat-card:last-child {
  border-right: none;
}

.stats-section .counter-val {
  color: var(--accent-gold-bright);
  font-size: clamp(50px, 4vw, 58px);
  min-height: 64px;
  letter-spacing: 0.01em;
}

.stats-section .stat-title {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

.stats-section .stat-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* =============================================================
 * UPGRADE: Brand Split Layout (left-right alternating full-bleed)
 * ============================================================= */
.brand-split-section {
  width: 100%;
  overflow: hidden;
}

.brand-split-row {
  display: flex;
  min-height: 900px;
  position: relative;
  overflow: hidden;
}

.brand-split-row.rev {
  flex-direction: row-reverse;
}

.brand-split-img {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}

.brand-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-split-row:hover .brand-split-img img {
  transform: scale(1.04);
}

.brand-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 14, 12, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.brand-split-row.rev .brand-split-img-overlay {
  background: linear-gradient(to left, rgba(15, 14, 12, 0.18) 0%, transparent 70%);
}

.brand-split-content {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
  background: #FAF8F4;
  position: relative;
}

.brand-split-row:nth-child(even) .brand-split-content {
  background: #FFFFFF;
}

.brand-split-eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--accent-gold-bright);
  margin-bottom: 16px;
  display: block;
}

.brand-split-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #1E232A;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.brand-split-slogan {
  font-size: 16px;
  color: var(--accent-gold-bright);
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.brand-split-rule {
  width: 48px;
  height: 2px;
  background: var(--accent-gold-bright);
  margin-bottom: 24px;
}

.brand-split-desc {
  font-size: 15px;
  color: #5E6977;
  line-height: 1.85;
  margin-bottom: 32px;
}

.brand-kpi-row {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.brand-kpi-item {
  text-align: center;
}

.brand-kpi-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  line-height: 1;
  display: block;
}

.brand-kpi-label {
  font-size: 12px;
  color: #8E98A5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.brand-tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.brand-chip {
  padding: 5px 14px;
  border: 1px solid rgba(208, 25, 55, 0.3);
  color: var(--accent-gold-bright);
  font-size: 11px;
  letter-spacing: 0.08em;
  border-radius: 3px;
}

.brand-split-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-brand-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold-bright), #991B1B);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(208, 25, 55, 0.25);
}

.btn-brand-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(208, 25, 55, 0.4);
}

.btn-brand-ghost {
  display: inline-block;
  background: transparent;
  color: var(--accent-gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  border: 1px solid var(--accent-gold-bright);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-brand-ghost:hover {
  background: var(--accent-gold-bright);
  color: #ffffff;
}

@media screen and (max-width: 1168px) {

  .brand-split-row,
  .brand-split-row.rev {
    flex-direction: column;
    height: auto;
  }

  .brand-split-img {
    flex: 0 0 auto;
    height: 55vw;
    min-height: 320px;
  }

  .brand-split-content {
    flex: none;
    padding: 50px 40px;
  }
}

@media screen and (max-width: 768px) {
  .brand-split-img {
    height: 260px;
  }

  .brand-split-content {
    padding: 40px 24px;
  }

  .brand-split-name {
    font-size: 1.8rem;
  }

  .brand-kpi-row {
    gap: 20px;
  }
}

/* =============================================================
 * UPGRADE: Manufacturing / Advantage Section (dark red bg)
 * ============================================================= */
.mfg-section {
  background: #0F0E0C;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.mfg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(208, 25, 55, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(208, 25, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.mfg-section .section-label {
  color: rgba(208, 25, 55, 0.85);
}

.mfg-section .section-title {
  color: #ffffff;
}

.mfg-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.mfg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mfg-card {
  padding: 50px 40px;
  background: rgba(15, 14, 12, 0.8);
  position: relative;
  transition: background 0.4s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mfg-card:last-child {
  border-right: none;
}

.mfg-card:hover {
  background: rgba(208, 25, 55, 0.12);
}

.mfg-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(208, 25, 55, 0.4);
  border-radius: 4px;
}

.mfg-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-gold-bright);
  fill: none;
  stroke-width: 1.5;
}

.mfg-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.mfg-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.mfg-card-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

@media screen and (max-width: 900px) {
  .mfg-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mfg-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mfg-card:last-child {
    border-bottom: none;
  }
}

/* =============================================================
 * UPGRADE: Platform Scroller (logo ticker)
 * ============================================================= */
.platform-section {
  background: var(--bg-sand);
  padding: clamp(82px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}

.platform-scroller-wrap {
  position: relative;
  overflow: hidden;
  margin-top: clamp(28px, 5vw, 50px);
}

.platform-scroller-wrap::before,
.platform-scroller-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: clamp(36px, 12vw, 200px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.platform-scroller-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-sand), transparent);
}

.platform-scroller-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-sand), transparent);
}

.platform-scroller-track {
  display: flex;
  width: max-content;
  animation: platformScroll 28s linear infinite;
  gap: 0;
}

.platform-scroller-track:hover {
  animation-play-state: paused;
}

@keyframes platformScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.platform-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(76px, 14vw, 105px);
  min-width: clamp(148px, 16vw, 188px);
  padding: clamp(14px, 2.8vw, 20px) clamp(26px, 3.5vw, 38px);
  border-right: 1px solid rgba(30, 35, 42, 0.06);
}

.platform-logo-item img {
  width: clamp(104px, 9vw, 126px);
  height: clamp(34px, 4vw, 46px);
  max-width: none;
  object-fit: contain;
  opacity: 0.68;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.platform-logo-item img.platform-logo-wide {
  width: clamp(110px, 10vw, 132px);
  height: clamp(34px, 4vw, 46px);
  max-width: none;
}

.platform-logo-item:hover img {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .platform-scroller-track {
    animation-duration: 24s;
  }

  .platform-logo-item {
    border-right-color: rgba(30, 35, 42, 0.04);
  }
}

@media (prefers-reduced-motion: reduce) {

  .platform-scroller-wrap::before,
  .platform-scroller-wrap::after {
    display: none;
  }

  .platform-scroller-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .platform-logo-item {
    border-right: none;
  }
}

/* =============================================================
 * UPGRADE: Values Grid (核心价值观)
 * ============================================================= */
.values-section {
  background: var(--bg-sand);
  padding: 110px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border-top: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-bright), #991B1B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(208, 25, 55, 0.12);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(208, 25, 55, 0.08);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.value-icon-char {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #1E232A;
  margin-bottom: 12px;
  font-weight: 700;
}

.value-subtitle {
  font-size: 12px;
  color: var(--accent-gold-bright);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.value-desc {
  font-size: 14px;
  color: #5E6977;
  line-height: 1.8;
}

@media screen and (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
 * UPGRADE: Timeline dark background
 * ============================================================= */
.timeline-section.dark-timeline {
  background: #0F0E0C;
}

.timeline-section.dark-timeline .section-title {
  color: #ffffff;
}

.timeline-section.dark-timeline .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.timeline-section.dark-timeline .timeline-spine {
  background: linear-gradient(to bottom, var(--accent-gold-bright), rgba(208, 25, 55, 0.2));
}

.timeline-section.dark-timeline .timeline-content-card {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: none;
}

.timeline-section.dark-timeline .timeline-year {
  font-size: 22px;
}

.timeline-section.dark-timeline .timeline-text {
  color: rgba(255, 255, 255, 0.65);
}

.timeline-section.dark-timeline .timeline-dot {
  border-color: #0F0E0C;
  box-shadow: 0 0 14px rgba(208, 25, 55, 0.6);
}

/* =============================================================
 * UPGRADE: Facility Full-Bleed Section
 * ============================================================= */
.office-environment-section {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
  background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 100%);
}

#facility-showcase {
  padding: clamp(56px, 7vw, 92px) var(--section-padding-x);
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F4EF 48%, var(--bg-light) 100%);
}

.facility-fullbleed {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.facility-fullbleed-img {
  position: relative;
  overflow: hidden;
  order: 2;
  min-height: 440px;
}

.facility-fullbleed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.facility-fullbleed:hover .facility-fullbleed-img img {
  transform: scale(1.04);
}

.facility-fullbleed-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 0 0 clamp(36px, 5vw, 56px);
  background: transparent;
}

.facility-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}

.facility-stat-mini {
  min-height: 116px;
  padding: 22px;
  border-left: 3px solid var(--accent-gold-bright);
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(30, 35, 42, 0.04);
}

.facility-stat-mini-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  line-height: 1;
  display: block;
}

.facility-stat-mini-label {
  font-size: 11px;
  color: #8E98A5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .facility-fullbleed-img {
    height: 50vw;
    min-height: 280px;
  }

  .facility-fullbleed-content {
    grid-template-columns: 1fr;
    padding: 50px 40px;
  }
}

@media screen and (max-width: 768px) {
  #facility-showcase {
    padding-left: 0;
    padding-right: 0;
  }

  .facility-fullbleed {
    border-radius: 0;
  }

  .facility-fullbleed-img {
    height: 260px;
  }

  .facility-fullbleed-content {
    padding: 40px 24px;
  }

  .facility-stats-mini {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .facility-img-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 160px);
    height: auto;
  }
}

/* Facility 2×2 photo grid */
.facility-img-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 3px;
  overflow: hidden;
}

.facility-img-cell {
  overflow: hidden;
  position: relative;
}

.facility-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.facility-img-cell:hover img {
  transform: scale(1.06);
}


/* =============================================================
 * UPGRADE: Mission/Vision full-bleed split
 * ============================================================= */
#about-us-section {
  padding-top: clamp(64px, 8vw, 112px);
  background: linear-gradient(180deg, #F4F1EA 0%, #F8F6F1 26%, var(--bg-light) 46%, #F8F5EF 72%, var(--bg-sand) 90%, var(--bg-light) 100%);
  border-top: 1px solid rgba(30, 35, 42, 0.14);
  box-shadow: inset 0 18px 28px rgba(30, 35, 42, 0.035);
  position: relative;
}

.about-section-marker {
  margin-bottom: clamp(38px, 6vw, 68px);
}

.about-section-marker .section-title {
  margin-bottom: 0;
}

#about-us-section .timeline-section {
  background: transparent;
}

#about-us-section .timeline-content-card {
  background: #ffffff;
  backdrop-filter: none;
}

.about-split {
  display: flex;
  min-height: 600px;
  overflow: hidden;
}

.about-split-img {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}

.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-split:hover .about-split-img img {
  transform: scale(1.04);
}

.about-split-content {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  background: transparent;
}

.about-mv-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.about-mv-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  border-left: 4px solid var(--accent-gold-bright);
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(30, 35, 42, 0.04);
}

.about-mv-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transform: translateX(6px);
}

.about-mv-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-mv-card h3 {
  font-size: 18px;
  color: #1E232A;
  margin-bottom: 8px;
}

.about-mv-card p {
  font-size: 14px;
  color: #5E6977;
  line-height: 1.75;
}

@media screen and (max-width: 1024px) {
  .about-split {
    flex-direction: column;
  }

  .about-split-img {
    flex: none;
    height: 50vw;
    min-height: 280px;
  }

  .about-split-content {
    flex: none;
    padding: 50px 40px;
  }
}

@media screen and (max-width: 768px) {
  .about-split-img {
    height: 260px;
  }

  .about-split-content {
    padding: 40px 24px;
  }
}

/* =============================================================
 * UPGRADE: Cert Section compact
 * ============================================================= */
.cert-grid-compact {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
  margin-top: 50px;
  align-items: center;
}

.cert-card-compact {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  cursor: default;
  transition: filter 0.4s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.cert-card-compact::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-bright), #991B1B);
  border-radius: 2px;
  transition: transform 0.4s ease;
  transform-origin: center;
}

.cert-card-compact:hover {
  filter: drop-shadow(0 8px 16px rgba(208, 25, 55, 0.12));
}

.cert-card-compact:hover::after {
  /* transform: translateX(-50%) scaleX(1); */
}

.cert-card-compact img {
  max-height: 112%;
  max-width: 112%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.95;
  filter: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

@media screen and (max-width: 1200px) {
  .cert-grid-compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .cert-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-card-compact {
    height: 126px;
  }
}

/* =============================================================
 * UPGRADE: Partners Ecosystem cards richer
 * ============================================================= */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.ecosystem-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 44px 36px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #ECE9E1;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ecosystem-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-bright), #991B1B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ecosystem-card:hover::after {
  transform: scaleX(1);
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(208, 25, 55, 0.1);
}

.ecosystem-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(208, 25, 55, 0.06);
  border: 1px solid rgba(208, 25, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
}

.ecosystem-title {
  font-size: 19px;
  color: #1E232A;
  font-weight: 700;
  margin-bottom: 12px;
}

.ecosystem-desc {
  font-size: 14px;
  color: #5E6977;
  line-height: 1.8;
}

@media screen and (max-width: 900px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
 * UPGRADE: Footer dark
 * ============================================================= */
.main-footer {
  background: #0F0E0C !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-top: none !important;
}

.main-footer .logo-main {
  color: var(--accent-gold-bright) !important;
}

.main-footer .footer-desc {
  color: rgba(255, 255, 255, 0.45) !important;
}

.main-footer .footer-links-col h4 {
  color: #ffffff !important;
}

.main-footer .footer-links-col ul li a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.main-footer .footer-links-col ul li a:hover {
  color: var(--accent-gold-bright) !important;
}

.main-footer .footer-rights {
  color: rgba(255, 255, 255, 0.3) !important;
  line-height: 1.8;
}

.main-footer .footer-legal-links a {
  color: rgba(255, 255, 255, 0.4) !important;
}

.main-footer .footer-legal-links a:hover {
  color: var(--accent-gold-bright) !important;
}

.main-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.07) !important;
}

.footer-social-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  transition: all 0.35s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--accent-gold-bright);
  border-color: var(--accent-gold-bright);
  color: #ffffff;
  transform: translateY(-3px);
}

/* =============================================================
 * UPGRADE: bg-sand section label visibility
 * ============================================================= */
.bg-sand .section-title {
  color: #1E232A;
}

/* Nav dark hamburger bar fix on white nav */
.main-header.header-scrolled .hamburger .bar {
  background-color: var(--text-dark);
}

/* =============================================================
 * UPGRADE: Contact section richer
 * ============================================================= */
.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-block {
  padding: 28px 30px;
  border-left: 4px solid var(--accent-red);
  background: #ffffff;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.contact-info-primary {
  padding: clamp(32px, 5vw, 52px);
  border-left-width: 5px;
  border-radius: 8px;
  margin-bottom: 0;
}

.contact-info-block:hover {
  transform: translateX(6px);
  border-left-color: var(--accent-gold-bright);
  box-shadow: 0 10px 28px rgba(208, 25, 55, 0.1);
}

.contact-info-block h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: #1E232A;
  margin-bottom: 22px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: #5E6977;
  margin-bottom: 14px;
  line-height: 1.8;
}

.contact-info-row strong {
  color: #1E232A;
  flex-shrink: 0;
  min-width: 72px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-row a {
  color: var(--accent-gold-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media screen and (max-width: 600px) {
  .contact-info-row {
    display: block;
  }

  .contact-info-row strong {
    display: block;
    min-width: 0;
    margin-bottom: 4px;
  }
}

/* =============================================================
 * UPGRADE: bg-light sections
 * ============================================================= */
.bg-light {
  background-color: var(--bg-light);
}

.bg-sand {
  background-color: var(--bg-sand);
}

/* =============================================================
 * UPGRADE: Social waterfall masonry-style
 * ============================================================= */
.social-waterfall {
  columns: 3;
  column-gap: 20px;
  margin-top: 50px;
}

.social-feed-card {
  break-inside: avoid;
  margin-bottom: 20px;
  height: auto;
}

.social-feed-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .social-waterfall {
    columns: 2;
  }
}

@media screen and (max-width: 600px) {
  .social-waterfall {
    columns: 1;
  }
}


/* ── 右侧容器优化 ── */
.social-pr-right {
  overflow: hidden;
  background: #1a1410;
  display: flex;
  align-items: center;
}

/* ── 瀑布流布局核心 ── */
.social-waterfall {
  columns: 2;
  /* 设置为2列或3列，取决于你图片的宽度 */
  column-gap: 15px;
  /* 列间距 */
  width: 100%;
}

/* ── 单个图片卡片 ── */
.social-feed-card {
  break-inside: avoid;
  /* 防止图片在列之间断开 */
  margin-bottom: 15px;
  /* 图片上下间距 */
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  /* 稍微圆角更现代 */
}

.social-feed-card img {
  width: 100%;
  height: auto;
  /* 关键：高度设为自动，保持图片原始比例 */
  display: block;
  object-fit: contain;
  /* 确保图片完整显示 */
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-feed-card:hover img {
  transform: scale(1.05);
}

/* ── 悬浮标签适配 ── */
.social-feed-card .mosaic-hover-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 11px;
  padding: 20px 10px 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.social-feed-card:hover .mosaic-hover-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── 响应式适配 ── */
@media (max-width: 900px) {
  .social-waterfall {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .social-waterfall {
    columns: 1;
    /* 手机端单列显示 */
  }
}

@media screen and (max-width: 1024px) {
  .brand-split-row {
    min-height: 925px;
  }
}

/* =============================================================
 * UPGRADE: Brand Feature Grid for MALACASA
 * ============================================================= */
.brand-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  width: 100%;
}

.brand-feature-card {
  /* background: #FAF6EE; */
  border: 1px solid #E6DEC9;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(153, 27, 27, 0.06);
  border-color: var(--accent-gold-bright);
  /* background: #FCF8F0; */
}

.brand-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.brand-feature-index {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(208, 25, 55, 0.24);
  border-radius: 50%;
  color: var(--accent-gold-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(208, 25, 55, 0.04);
}

.brand-feature-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #1E232A;
  margin: 0 0 8px 0;
  letter-spacing: 0.03em;
}

.brand-feature-desc {
  font-size: 13px;
  color: #5E6977;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .brand-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-feature-card {
    padding: 20px;
  }
}

/* =============================================================
 * UPGRADE: Contact stacked flat layout (wide screen optimized)
 * ============================================================= */
.contact-flat-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 上层：一字排开的联系信息条 */
.contact-info-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr; /* 适当把地址列分配得宽一些 */
  gap: 40px;
  padding: 10px 0;
}

.contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-strip-item.interactive-strip:hover {
  transform: translateY(-2px);
}

.contact-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(208, 25, 55, 0.05);
  border: 1px solid rgba(208, 25, 55, 0.15);
  color: var(--accent-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.contact-strip-item.interactive-strip:hover .contact-strip-icon {
  background: var(--accent-gold-bright);
  border-color: var(--accent-gold-bright);
  color: #FFFFFF;
}

.contact-strip-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-strip-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.contact-strip-content strong {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8E98A5;
}

.contact-strip-content span {
  font-size: 14.5px;
  color: #1E232A;
  line-height: 1.6;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-strip-item.interactive-strip:hover .contact-strip-content span {
  color: var(--accent-gold-bright);
}

/* 分割线 */
.contact-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, rgba(30, 35, 42, 0) 0%, rgba(30, 35, 42, 0.08) 20%, rgba(30, 35, 42, 0.08) 80%, rgba(30, 35, 42, 0) 100%);
  margin: 0;
}

/* 下层表单 */
.contact-flat-form {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(36px, 5vw, 56px) clamp(30px, 5vw, 52px);
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(30, 35, 42, 0.05);
  width: 100%;
}

/* 姓名、邮箱、电话三列并列 */
.form-group-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
  .contact-info-strip {
    grid-template-columns: 1fr; /* 窄屏时一字排开的条目纵向排列 */
    gap: 24px;
  }
  
  .form-group-triple {
    grid-template-columns: 1fr; /* 表单在窄屏下退回单列排列 */
    gap: 16px;
  }
  
  .contact-flat-layout {
    gap: 30px;
  }
}
