/* ===================================================
   台灣鋼鐵聯合會 Taiwan Steel Federation
   Main Stylesheet — style.css
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --steel-dark:    #1a1f2e;
  --steel-navy:    #0d2545;
  --steel-blue:    #1a4b8a;
  --steel-accent:  #c0392b;
  --steel-gold:    #d4a017;
  --steel-silver:  #7f8c8d;
  --steel-light:   #ecf0f1;
  --steel-white:   #ffffff;
  --text-primary:  #1a1f2e;
  --text-secondary:#4a5568;
  --text-muted:    #718096;
  --border-color:  #e2e8f0;
  --card-shadow:   0 4px 24px rgba(0,0,0,0.08);
  --card-shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.3s ease;
  --font-zh:       'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
  --font-en:       'Noto Sans', Arial, sans-serif;
  --font-ja:       'Noto Sans JP', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-zh);
  color: var(--text-primary);
  background: #f8f9fa;
  line-height: 1.7;
  overflow-x: hidden;
}
body.lang-ja { font-family: var(--font-ja); }
body.lang-en, body.lang-es { font-family: var(--font-en); }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--steel-blue); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- REDIRECT BANNER ---- */
.redirect-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--steel-navy), var(--steel-blue));
  color: #fff;
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.redirect-banner.visible { transform: translateY(0); }
.redirect-banner.hidden { display: none; }

.redirect-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.redirect-inner > .fa-globe-asia {
  font-size: 1.4rem;
  color: var(--steel-gold);
  flex-shrink: 0;
}
#redirect-text-main {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 200px;
}
.redirect-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 14px;
  font-weight: 700;
}
#countdown-num {
  font-size: 1.4rem;
  color: var(--steel-gold);
  font-weight: 900;
  min-width: 30px;
  text-align: center;
}
.btn-redirect-go {
  background: var(--steel-gold);
  color: var(--steel-dark);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-redirect-go:hover {
  background: #e6b520;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,160,23,0.4);
}
.btn-redirect-dismiss {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.btn-redirect-dismiss:hover { background: rgba(255,255,255,0.3); }

/* ---- HEADER ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* Header Top */
.header-top {
  background: var(--steel-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.header-slogan {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--steel-gold);
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all var(--transition);
  font-family: inherit;
}
.lang-btn:hover, .lang-btn.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.lang-btn.active { color: var(--steel-gold); font-weight: 600; }
.lang-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 2px 10px;
}
.header-search input {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.8rem;
  width: 140px;
}
.header-search input::placeholder { color: rgba(255,255,255,0.4); }
.header-search button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 0.8rem;
}

/* Header Main */
.header-main {
  background: var(--steel-navy);
  padding: 14px 0;
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--steel-accent), #e74c3c);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(192,57,43,0.4);
}
.logo-text { display: flex; flex-direction: column; }
.logo-zh {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.logo-en {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  font-family: var(--font-en);
  margin-top: 2px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }

/* Main Nav */
#main-nav {
  background: var(--steel-blue);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-list {
  display: flex;
  gap: 0;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav-link i { font-size: 0.85rem; }
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-bottom-color: var(--steel-gold);
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(160deg, #0d1b2a 0%, #1a2a4a 40%, #1a3a6a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26,75,138,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(192,57,43,0.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--steel-gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--steel-accent);
  color: #fff;
  border-color: var(--steel-accent);
}
.btn-primary:hover {
  background: #a93226;
  border-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--steel-navy);
  border-color: var(--steel-navy);
}
.btn-outline-dark:hover {
  background: var(--steel-navy);
  color: #fff;
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--steel-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin: 0 8px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- NEWS TICKER ---- */
.news-ticker {
  background: var(--steel-accent);
  padding: 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: stretch;
  height: 42px;
}
.ticker-label {
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-items {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  color: rgba(255,255,255,0.92);
  font-size: 0.83rem;
}
.ticker-items span { flex-shrink: 0; }
@keyframes ticker-scroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(26,75,138,0.08);
  color: var(--steel-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(26,75,138,0.15);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--steel-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--steel-accent), var(--steel-blue));
  border-radius: 2px;
  margin: 0 auto;
}
.section-desc {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ---- ABOUT ---- */
.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: 0.97rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--steel-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel-navy);
  border-left: 3px solid var(--steel-blue);
}
.value-item i { color: var(--steel-blue); font-size: 1rem; }

.about-img-wrap { margin-bottom: 20px; }
.about-img-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--steel-navy) 0%, var(--steel-blue) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(212,160,23,0.1));
}
.about-img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--steel-gold);
  color: var(--steel-dark);
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
  z-index: 1;
}
.badge-num { display: block; font-size: 0.7rem; font-weight: 600; }
.badge-year { display: block; font-size: 1.6rem; line-height: 1; }

.about-cards { display: grid; gap: 12px; }
.about-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.about-card i {
  font-size: 1.4rem;
  color: var(--steel-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.about-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--steel-dark);
  margin-bottom: 4px;
}
.about-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ---- MEMBERS ---- */
.members-section {
  background: linear-gradient(180deg, #f0f4f9 0%, #e8eef7 100%);
}
.members-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  border: 1px solid var(--border-color);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-top-color: var(--steel-blue);
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--steel-navy), var(--steel-blue));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Member Tiers */
.member-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.tier-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--border-color);
  position: relative;
  transition: all var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.tier-card.featured {
  border-color: var(--steel-blue);
  background: linear-gradient(180deg, #f0f6ff, #fff);
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--steel-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.tier-header {
  margin-bottom: 20px;
}
.tier-header i {
  font-size: 1.8rem;
  color: var(--steel-blue);
  margin-bottom: 10px;
  display: block;
}
.tier-card.featured .tier-header i { color: var(--steel-accent); }
.tier-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--steel-dark); }
.tier-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--steel-navy);
  margin-bottom: 24px;
}
.tier-price span { font-size: 2rem; }
.tier-price small { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.tier-card ul {
  text-align: left;
  margin-bottom: 28px;
}
.tier-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.87rem;
  color: var(--text-secondary);
  border-bottom: 1px solid #f0f0f0;
}
.tier-card ul li:last-child { border: none; }
.tier-card ul li .fa-check { color: #27ae60; flex-shrink: 0; }

/* ---- INDUSTRY ---- */
.industry-section { background: #fff; }
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}
.featured-article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.featured-article:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.article-img-placeholder {
  background: linear-gradient(135deg, var(--steel-navy), var(--steel-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  min-height: 180px;
}
.article-content { padding: 24px 24px 24px 0; }
.article-tag {
  display: inline-block;
  background: rgba(26,75,138,0.1);
  color: var(--steel-blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.article-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.article-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}
.article-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.article-meta i { margin-right: 4px; }

.industry-articles-row { display: grid; gap: 16px; }
.small-article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
}
.small-article:hover { background: #fff; box-shadow: var(--card-shadow); }
.small-article-img {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.25);
}
.small-article .article-content { padding: 0; }

/* Sidebar */
.sidebar-widget {
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}
.widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--steel-blue);
}
.widget-title i { color: var(--steel-blue); }

.market-indicators { display: grid; gap: 0; }
.indicator-item {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}
.indicator-item:last-child { border: none; }
.ind-name { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.ind-value-wrap { display: flex; align-items: center; justify-content: space-between; }
.ind-value { font-size: 0.9rem; font-weight: 700; color: var(--steel-dark); }
.ind-change { font-size: 0.78rem; font-weight: 600; padding: 2px 8px; border-radius: 10px; }
.ind-change.up { background: rgba(39,174,96,0.1); color: #27ae60; }
.ind-change.down { background: rgba(192,57,43,0.1); color: var(--steel-accent); }
.indicator-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; }

.resource-links { display: grid; gap: 8px; }
.resource-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.resource-links a:hover {
  background: var(--steel-blue);
  color: #fff;
}
.resource-links a i { font-size: 0.9rem; width: 16px; color: var(--steel-accent); }
.resource-links a:hover i { color: rgba(255,255,255,0.8); }

/* ---- EVENTS ---- */
.events-section { background: linear-gradient(180deg, #f0f4f9 0%, #fff 100%); }
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}
.event-featured {
  display: grid;
  grid-template-columns: 120px 1fr;
}
.event-date-badge {
  background: linear-gradient(180deg, var(--steel-navy), var(--steel-blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  text-align: center;
}
.event-month { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.7; }
.event-day { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.event-year { font-size: 0.75rem; opacity: 0.6; margin-top: 4px; }
.event-info { padding: 28px 24px; }
.event-type {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--steel-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.event-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.event-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}
.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.event-details i { margin-right: 4px; color: var(--steel-blue); }

.events-list {
  display: grid;
  gap: 14px;
  align-content: start;
}
.event-list-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
}
.event-list-item:hover { transform: translateX(4px); border-color: var(--steel-blue); }
.event-list-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--steel-light);
  border-radius: var(--radius);
  padding: 10px;
}
.el-month { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); }
.el-day { font-size: 1.6rem; font-weight: 900; color: var(--steel-navy); line-height: 1; }
.event-list-info { display: flex; flex-direction: column; justify-content: center; }
.event-list-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--steel-dark);
  margin: 6px 0 6px;
  line-height: 1.4;
}
.event-list-info p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ---- PARTNERS ---- */
.partners-section {
  background: var(--steel-dark);
  padding: 40px 0;
}
.partners-title {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.partner-logo:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.partner-logo i { font-size: 1rem; }

/* ---- CONTACT ---- */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
}
.contact-info { display: grid; gap: 24px; align-content: start; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item i {
  width: 42px; height: 42px;
  background: rgba(26,75,138,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-item p {
  font-size: 0.92rem;
  color: var(--steel-dark);
  margin: 0;
  font-weight: 500;
}
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-btn {
  width: 40px; height: 40px;
  background: var(--steel-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-blue);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--steel-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-color);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(26,75,138,0.08);
}
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 40px 20px;
  color: #27ae60;
}
.form-success i { font-size: 3rem; margin-bottom: 16px; }
.form-success p { font-size: 1rem; }

/* ---- FOOTER ---- */
#site-footer { background: var(--steel-dark); }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.footer-logo i { color: var(--steel-gold); font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-domain {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-domain i { margin-right: 6px; }

.footer-links h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links ul { display: grid; gap: 8px; }
.footer-links ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--steel-gold); }

.footer-partner-promo h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.partner-promo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 8px;
}
.partner-promo-card:hover {
  background: rgba(212,160,23,0.2);
  border-color: var(--steel-gold);
}
.partner-promo-card > .fa-globe-asia {
  font-size: 1.4rem;
  color: var(--steel-gold);
  flex-shrink: 0;
}
.partner-promo-card strong {
  display: block;
  color: var(--steel-gold);
  font-size: 0.9rem;
  font-weight: 700;
}
.partner-promo-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin: 0;
}
.partner-promo-card > .fa-external-link-alt {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  margin-left: auto;
}
.fpp-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--steel-gold); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--steel-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(26,75,138,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 888;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--steel-accent);
  transform: translateY(-3px);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .industry-sidebar .sidebar-widget { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .header-slogan { display: none; }
  .nav-toggle { display: flex; }
  #main-nav { display: none; }
  #main-nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-link { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.08) !important; }
  
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { display: none; }
  .stat-item { text-align: left; }
  
  .members-services { grid-template-columns: 1fr; }
  .member-tiers { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .event-featured { grid-template-columns: 1fr; }
  .event-date-badge { flex-direction: row; gap: 10px; padding: 16px 24px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .industry-sidebar { grid-template-columns: 1fr; }
  
  .redirect-inner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px; }
  
  .section { padding: 56px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .featured-article { grid-template-columns: 1fr; }
  .article-img-placeholder { min-height: 120px; }
  .article-content { padding: 16px; }
  .contact-form-wrap { padding: 20px; }
}
