/* ============================================
   Jubilee Quest Capital — Global Styles
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-light: #0F1F3D;
  --navy-mid: #132744;
  --gold: #C9A84C;
  --gold-light: #D4BA6A;
  --gold-dark: #A88B3A;
  --white: #FFFFFF;
  --gray-100: #F5F5F7;
  --gray-200: #E8E8ED;
  --gray-300: #B0B0B8;
  --gray-400: #8A8A96;
  --gray-500: #6A6A76;
  --dark: #1A1A2E;
  --font-display: 'Playfair Display', 'Noto Serif TC', serif;
  --font-body: 'Inter', 'Noto Sans TC', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body[data-lang="zh-TW"] {
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.global-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.navbar {
  z-index: 1000;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-300);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-contact-group {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-contact-label {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.nav-contact-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.15);
}

.nav-email {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-300);
  font-size: 13px;
  transition: var(--transition);
}

.nav-email:hover {
  color: var(--gold);
}

.nav-email i {
  font-size: 12px;
  color: var(--gold);
}

.nav-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06C755;
  font-size: 16px;
  transition: var(--transition);
}

.nav-line-btn:hover {
  color: #05B34C;
  transform: scale(1.1);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 8px;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  color: var(--gold);
  font-weight: 600;
}

.lang-btn:hover {
  color: var(--gold-light);
}

.lang-divider {
  color: var(--gray-500);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../assets/images/hero-bg.png') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.45) 40%, rgba(10, 22, 40, 0.7) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.4) 70%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 24px;
}

.hero-deco-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-deco-bottom {
  margin: 24px auto 0;
  animation-delay: 0.4s;
}

.hero-tagline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.15s both;
}

.hero-tagline-line {
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.1;
  letter-spacing: 2px;
  animation: fadeInUp 0.6s ease 0.05s both;
}

.hero-title-gold {
  color: var(--gold);
  animation-delay: 0.1s;
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray-300);
  letter-spacing: 2px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-unit {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}

.hero-stat-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 8px;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
}

.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease 0.25s both;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.5); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Section Common
   ============================================ */

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

.section-line-center {
  margin: 0 auto;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-300);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   About Section
   ============================================ */

.about {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-highlights {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.05);
  border-left: 2px solid var(--gold);
  transition: var(--transition);
}

.about-highlight:hover {
  background: rgba(201, 168, 76, 0.1);
}

.about-highlight i {
  color: var(--gold);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.about-highlight strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-highlight span {
  font-size: 13px;
  color: var(--gray-400);
}

.about-visual {
  position: relative;
}

.about-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  text-align: center;
}

.about-stat-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.03);
}

.about-stat-featured {
  padding: 36px 24px;
  border-color: rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(10, 22, 40, 0.6) 100%);
}

.about-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 18px;
}

.about-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.about-stat-unit {
  display: block;
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-icon-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--gold);
  font-size: 16px;
}

.about-stat-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-stat-desc {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

.about-stat-address {
  border-color: rgba(201, 168, 76, 0.1);
}

/* ============================================
   Pillars Section
   ============================================ */

.pillars {
  background: rgba(10, 22, 40, 0.3);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow:
    0 0 20px rgba(201, 168, 76, 0.15),
    0 0 40px rgba(201, 168, 76, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(201, 168, 76, 0.03);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
}

.pillar-card:hover .pillar-icon {
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.pillar-card:hover .pillar-icon i {
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.pillar-card:hover .pillar-number {
  color: rgba(201, 168, 76, 0.12);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.pillar-icon i {
  font-size: 22px;
  color: var(--gold);
  transition: all 0.4s ease;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
}

/* ============================================
   Values Section
   ============================================ */

.values {
  background: rgba(15, 31, 61, 0.3);
}

.values-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(201, 168, 76, 0.01) 100%);
  box-shadow:
    0 0 20px rgba(201, 168, 76, 0.1),
    0 0 40px rgba(201, 168, 76, 0.05),
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 30px rgba(201, 168, 76, 0.02);
}

.value-item:hover .value-icon-wrap {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.2);
}

.value-item:hover .value-icon-wrap i {
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
}

.value-item:hover .value-title {
  color: var(--gold-light);
}

.value-item-reverse {
  flex-direction: row-reverse;
}

.value-content {
  flex: 1;
}

.value-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.8;
}

.value-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-icon-wrap i {
  font-size: 30px;
  color: var(--gold);
  transition: all 0.4s ease;
}

/* ============================================
   Business Section
   ============================================ */

.business {
  background: transparent;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.business-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  overflow: hidden;
}

.business-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow:
    0 0 20px rgba(201, 168, 76, 0.12),
    0 0 40px rgba(201, 168, 76, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(201, 168, 76, 0.03);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(201, 168, 76, 0.01) 100%);
}

.business-card:hover .business-card-accent {
  transform: scaleX(1);
}

.business-card-top {
  padding: 36px 28px 24px;
}

.business-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  margin-bottom: 20px;
}

.business-icon i {
  font-size: 20px;
  color: var(--gold);
}

.business-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.business-positioning {
  font-size: 13px;
  color: var(--gold-light);
  font-style: italic;
}

.business-card-body {
  padding: 0 28px 36px;
}

.business-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.business-points li {
  font-size: 14px;
  color: var(--gray-300);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.business-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.business-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

/* ============================================
   Leadership Section
   ============================================ */

.leadership {
  background: rgba(10, 22, 40, 0.3);
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.leader-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.leader-photo {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  height: 220px;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: var(--transition);
}

.leader-card:hover .leader-photo img {
  filter: grayscale(0%);
}

.leader-photo-border {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.leader-info {
  flex: 1;
}

.leader-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.leader-name-zh {
  color: var(--white);
}

.leader-name-en {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-400);
}

.leader-role {
  display: inline-block;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.leader-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
  margin: 20px 0;
}

.leader-bio {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.leader-tag {
  padding: 6px 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.leader-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ============================================
   Global Presence Section
   ============================================ */

.global {
  background: rgba(15, 31, 61, 0.3);
}

.global-centers {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
}

.global-card {
  flex: 1;
  max-width: 300px;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: var(--transition);
}

.global-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.global-card-primary {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.global-card-icon {
  margin-bottom: 20px;
}

.global-card-icon i {
  font-size: 32px;
  color: var(--gold);
}

.global-card-city {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.global-card-role {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.global-card-addr {
  font-size: 12px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.global-card-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

.global-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.4;
}

.global-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.flow-step {
  text-align: center;
}

.flow-label {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.flow-location {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 1px;
}

.flow-connector {
  color: var(--gold);
  opacity: 0.4;
}

/* ============================================
   Commitment Section
   ============================================ */

.commitment {
  position: relative;
  padding: 140px 0;
  background: rgba(10, 22, 40, 0.3);
  overflow: hidden;
}

.commitment-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.commitment-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.commitment-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 16px 0 20px;
}

.commitment-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.6;
  margin: 40px 0;
  padding: 0 20px;
  font-style: italic;
}

.commitment-text {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================
   News
   ============================================ */

.news {
  padding: 100px 0;
}

.news-header {
  text-align: center;
  margin-bottom: 0;
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.news-card {
  display: flex;
  gap: 28px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: var(--transition);
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(191, 155, 48, 0.2);
  transform: translateY(-2px);
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 12px 0;
  border-right: 2px solid rgba(191, 155, 48, 0.3);
  flex-shrink: 0;
}

.news-day {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.news-month {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.news-body {
  flex: 1;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-excerpt {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
}


/* ============================================
   Blog Pages
   ============================================ */

.nav-blog-link {
  font-weight: 500;
}

.blog-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px;
}

.blog-hero-desc {
  font-size: 15px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-list {
  padding: 40px 0 100px;
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Blog Card V2 — image + body style (reference design) */
.blog-card-v2 {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.blog-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.blog-card-v2-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-v2:hover .blog-card-v2-img img {
  transform: scale(1.05);
}

.blog-card-v2-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-v2-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card-v2-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: var(--transition);
}

.blog-card-v2:hover .blog-card-v2-title {
  color: var(--gold-light);
}

.blog-card-v2-excerpt {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-v2-read {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.blog-card-v2:hover .blog-card-v2-read {
  letter-spacing: 1px;
}

/* Blog Post Badge */
.blog-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* Blog Post Detail */
.blog-post {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}

.blog-post .container {
  max-width: 820px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 40px;
  transition: var(--transition);
}

.blog-back:hover {
  color: var(--gold);
  gap: 12px;
}

.blog-post-header {
  margin-bottom: 36px;
}

.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 16px 0 20px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--gray-400);
}

.blog-post-meta i {
  color: var(--gold);
  margin-right: 6px;
}

.blog-post-cover {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-post-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.blog-post-body p {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.9;
  margin-bottom: 20px;
}

.blog-post-body strong {
  color: var(--white);
}

.blog-post-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 48px 0 32px;
}

.blog-post-about {
  font-size: 13px !important;
  color: var(--gray-500) !important;
  line-height: 1.7 !important;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-v2-img {
    height: 180px;
  }

  .blog-post {
    padding: 120px 0 60px;
  }

  .blog-post-body h2 {
    font-size: 19px;
  }

  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: rgba(6, 14, 26, 0.5);
  padding: 64px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 360px;
}

.footer-links h4,
.footer-address h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-address p {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-address i {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 6px 14px;
  background: #06C755;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
}

.footer-line-btn i {
  font-size: 15px;
  color: #fff;
}

.footer-line-btn:hover {
  background: #05B34C;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(6, 199, 85, 0.25);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ============================================
   Animations
   ============================================ */

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .global-centers {
    flex-wrap: wrap;
  }

  .global-arrow {
    display: none;
  }

  .global-card {
    max-width: none;
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-link {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-stat-divider {
    width: 48px;
    height: 1px;
  }

  .hero-tagline-line {
    display: none;
  }

  .about-stat-number {
    font-size: 42px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item-reverse {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .leader-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 32px;
  }

  .leader-photo {
    width: 180px;
    height: 180px;
  }

  .leader-name {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .leader-divider {
    margin: 20px auto;
  }

  .leader-tags {
    justify-content: center;
  }

  .global-centers {
    flex-direction: column;
    align-items: center;
  }

  .global-card {
    width: 100%;
    max-width: 400px;
    flex: none;
  }

  .global-flow {
    flex-direction: column;
    gap: 16px;
  }

  .news-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .news-date {
    flex-direction: row;
    gap: 8px;
    border-right: none;
    border-bottom: 2px solid rgba(191, 155, 48, 0.3);
    padding: 0 0 12px 0;
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .logo-img {
    height: 36px;
  }

  .navbar.scrolled .logo-img {
    height: 32px;
  }

  .hero-logo-img {
    height: 80px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 16px;
    letter-spacing: 2px;
  }

  .commitment {
    padding: 100px 0;
  }

  .commitment-quote {
    font-size: 18px;
  }
}
