/* Primary: Google Fonts | Fallback: loli.net mirror for China */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700;900&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.loli.net/css2?family=Noto+Sans+SC:wght@300;400;500;600;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
  background: #f8fafc;
  color: #475569;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; background: none; color: inherit; font: inherit; }
a { text-decoration: none; color: inherit; }

/* ===== Layout ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 24px; }
.text-center { text-align: center; }

/* ===== Section Label ===== */
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 16px;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.navbar-logo-icon {
  width: 32px; height: 32px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #059669, #0891b2);
}
.navbar-logo-text { font-weight: 700; font-size: 15px; color: #fff; line-height: 1.1; }
.navbar.scrolled .navbar-logo-text { color: #0f172a; }
.navbar-logo-sub {
  font-family: 'Rajdhani', sans-serif; font-weight: 500; font-size: 9px;
  color: #34d399; letter-spacing: 0.08em; line-height: 1;
}
.navbar.scrolled .navbar-logo-sub { color: #059669; }
.navbar-nav { display: none; align-items: center; gap: 4px; }
.navbar-nav-btn {
  padding: 8px 12px; border-radius: 4px; transition: all 0.2s;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.navbar.scrolled .navbar-nav-btn { color: #475569; }
.navbar-nav-btn:hover { color: #059669; }
.navbar-cta {
  display: none; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 4px; transition: all 0.2s;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff; font-weight: 600; font-size: 15px;
}
.navbar-cta:hover { box-shadow: 0 8px 30px rgba(5,150,105,0.3); }
.navbar-mobile-btn { display: block; color: #fff; }
.navbar.scrolled .navbar-mobile-btn { color: #0f172a; }
.navbar-mobile-menu {
  display: none; padding: 0 24px 16px;
  background: rgba(255,255,255,0.98); border-top: 1px solid rgba(5,150,105,0.1);
}
.navbar-mobile-menu.active { display: block; }
.navbar-mobile-item {
  display: block; width: 100%; text-align: left; padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 16px; color: #475569;
}
@media (min-width: 1024px) {
  .navbar-nav { display: flex; }
  .navbar-cta { display: flex; }
  .navbar-mobile-btn { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.55) 50%, rgba(5,50,30,0.65) 100%);
}
.hero-canvas-wrap { position: absolute; inset: 0; opacity: 0.5; }
.hero-canvas-wrap canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
}
.hero-ring-1 {
  width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,0.12);
  animation: ring-spin 30s linear infinite;
}
.hero-ring-2 {
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: ring-spin 20s linear infinite reverse;
}
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 24px; max-width: 1024px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 9999px; margin-bottom: 32px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 6px #34d399;
}
.hero-badge-text { font-size: 16px; color: #a7f3d0; letter-spacing: 0.1em; }
.hero-title {
  font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.8rem);
  color: #fff; line-height: 1.1; margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title-gradient {
  background: linear-gradient(90deg, #34d399, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.7); letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.8);
  line-height: 1.8; max-width: 680px; margin: 0 auto 2.5rem;
}
.hero-desc strong { color: #34d399; }
.hero-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.hero-btn-primary {
  padding: 12px 32px; border-radius: 4px; transition: all 0.3s;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 0 30px rgba(5,150,105,0.4);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(5,150,105,0.5); }
.hero-btn-outline {
  padding: 12px 32px; border-radius: 4px; transition: all 0.3s;
  background: transparent; border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-weight: 600; font-size: 15px;
}
.hero-btn-outline:hover { background: rgba(255,255,255,0.1); }
.hero-stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 768px; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat {
  text-align: center; padding: 16px; border-radius: 4px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.hero-stat-value {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem); color: #34d399; line-height: 1;
}
.hero-stat-unit { font-size: 0.55em; color: rgba(255,255,255,0.6); margin-left: 2px; }
.hero-stat-label { font-size: 16px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 4px;
  opacity: 0.6; transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span { font-size: 15px; color: rgba(255,255,255,0.7); }
.hero-scroll-icon { color: #34d399; animation: bounce 1.5s infinite; }

/* ===== About ===== */
.about { padding: 96px 24px; background: #ffffff; }
.about-grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; font-family: 'Rajdhani', sans-serif; font-size: 16px; color: #059669; letter-spacing: 0.2em; text-transform: uppercase; }
.about-label-line { width: 32px; height: 1px; background: #059669; }
.about-title { font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #0f172a; line-height: 1.25; margin-bottom: 1.5rem; }
.about-title span { color: #059669; }
.about-text { font-size: 16px; color: #475569; line-height: 2; margin-bottom: 1.2rem; }
.about-tags { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.about-tag {
  padding: 6px 12px; border-radius: 4px; font-size: 12px;
  background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.2); color: #059669;
}
.about-img-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(5,150,105,0.15); box-shadow: 0 8px 40px rgba(5,150,105,0.08);
}
.about-img-wrap img { width: 100%; object-fit: cover; }
.about-float {
  position: absolute; bottom: -24px; left: -24px; padding: 16px; border-radius: 12px;
  background: #fff; border: 1px solid rgba(5,150,105,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.about-float-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 24px; color: #059669; }
.about-float-text { font-size: 16px; color: #64748b; }
.about-glow {
  position: absolute; top: -16px; right: -16px; width: 96px; height: 96px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(5,150,105,0.12), transparent 70%);
}

/* ===== Business ===== */
.business { background: #f1f5f9; padding: 96px 24px; }
.biz-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 48px; }
.biz-tab {
  padding: 8px 16px; border-radius: 9999px; transition: all 0.2s;
  font-size: 15px; display: flex; align-items: center; gap: 8px;
  background: #fff; color: #64748b; border: 1px solid #e2e8f0;
}
.biz-tab.active { color: #fff; font-weight: 600; border: none; }
.biz-panel {
  border-radius: 16px; padding: 32px; display: grid; gap: 40px; align-items: start;
  background: #fff; border: 1px solid #e2e8f0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.biz-panel.fade-out { opacity: 0; transform: translateY(12px); }
.biz-panel.fade-in { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) { .biz-panel { grid-template-columns: 1fr 1fr; padding: 48px; } }
.biz-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.biz-subtitle { font-family: 'Rajdhani', sans-serif; font-size: 15px; letter-spacing: 0.25em; margin-bottom: 8px; }
.biz-panel-title { font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: #0f172a; margin-bottom: 1rem; line-height: 1.3; }
.biz-desc { font-size: 16px; color: #64748b; line-height: 1.9; margin-bottom: 24px; }
/* Biz stats row */
.biz-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.biz-stat {
  text-align: center; padding: 14px 8px; border-radius: 10px;
  background: #f8fafc; border: 1px solid #e2e8f0;
}
.biz-stat-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px; line-height: 1; }
.biz-stat-label { font-size: 12px; color: #94a3b8; margin-top: 4px; }
/* Biz items enhanced */
.biz-items { display: grid; grid-template-columns: 1fr; gap: 10px; }
.biz-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 10px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  transition: all 0.25s;
}
.biz-item:hover { background: #f0fdf4; transform: translateX(4px); border-color: rgba(5,150,105,0.2); }
.biz-item-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 16px;
}
.biz-item-text { font-size: 15px; color: #334155; font-weight: 500; }
.biz-item-bar { height: 3px; border-radius: 2px; margin-top: 4px; transition: width 0.6s ease; }
/* Biz regions enhanced */
.biz-regions { margin-top: 40px; display: grid; gap: 16px; }
@media (min-width: 768px) { .biz-regions { grid-template-columns: repeat(3, 1fr); } }
.biz-region {
  padding: 24px; border-radius: 12px; position: relative; overflow: hidden;
  transition: all 0.3s; background: #fff; border: 1px solid #e2e8f0;
}
.biz-region:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.biz-region::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; border-radius: 4px 0 0 4px;
}
.biz-region-title { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.biz-region-desc { font-size: 15px; color: #64748b; line-height: 1.7; }

/* ===== Energy Services ===== */
.energy { background: #ffffff; padding: 96px 24px; }
.energy-triangle { display: grid; gap: 24px; margin-bottom: 64px; }
@media (min-width: 768px) { .energy-triangle { grid-template-columns: repeat(3, 1fr); } }
.energy-tri-card {
  text-align: center; padding: 32px; border-radius: 16px;
  background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
  border: 1px solid #a7f3d0;
}
.energy-tri-icon { font-size: 40px; margin-bottom: 12px; }
.energy-tri-label { font-weight: 700; font-size: 18px; color: #059669; margin-bottom: 8px; }
.energy-tri-desc { font-size: 15px; color: #64748b; line-height: 1.7; }
.energy-grid { display: grid; gap: 20px; margin-bottom: 64px; }
@media (min-width: 768px) { .energy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .energy-grid { grid-template-columns: repeat(3, 1fr); } }
.energy-card {
  padding: 24px; border-radius: 12px; transition: all 0.3s;
  background: #fff; border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.energy-card:hover { border-color: rgba(5,150,105,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(5,150,105,0.08); }
.energy-card-icon { font-size: 32px; margin-bottom: 12px; }
.energy-card-title { font-weight: 600; font-size: 16px; color: #0f172a; margin-bottom: 8px; }
.energy-card-desc { font-size: 15px; color: #64748b; line-height: 1.7; }
.energy-market {
  border-radius: 16px; padding: 32px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border: 1px solid #a7f3d0;
}
@media (min-width: 768px) { .energy-market { padding: 48px; } }
.energy-market-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 768px) { .energy-market-grid { grid-template-columns: 1fr 1fr; } }
.energy-market-title { font-weight: 700; font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: #0f172a; margin-bottom: 12px; }
.energy-market-desc { font-size: 15px; color: #64748b; line-height: 1.9; }
.energy-market-data { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.energy-market-card {
  text-align: center; padding: 20px; border-radius: 12px;
  background: #fff; border: 1px solid #a7f3d0;
}
.energy-market-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px; color: #059669; line-height: 1; }
.energy-market-year { font-size: 16px; color: #0891b2; margin: 4px 0; }
.energy-market-stage { font-size: 15px; color: #64748b; }

/* ===== Honors ===== */
.honors { background: #f8fafc; padding: 96px 24px; }
.honors-grid { display: grid; gap: 48px; align-items: center; margin-bottom: 64px; }
@media (min-width: 1024px) { .honors-grid { grid-template-columns: 1fr 1fr; } }
.honor-item {
  display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 12px;
  background: #fff; border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.honor-star {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.honor-text { font-size: 16px; color: #334155; }
.honors-certs-img {
  border-radius: 16px; overflow: hidden;
  border: 1px solid #fbbf24; box-shadow: 0 8px 40px rgba(245,158,11,0.08);
}
.honors-certs-img img { width: 100%; height: 100%; object-fit: cover; }
.honors-cards { display: grid; gap: 24px; }
@media (min-width: 768px) { .honors-cards { grid-template-columns: repeat(3, 1fr); } }
.honor-card {
  border-radius: 12px; overflow: hidden; transition: all 0.3s;
  background: #fff; border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.honor-card:hover { border-color: #fbbf24; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(245,158,11,0.1); }
.honor-card-img { height: 208px; overflow: hidden; background: #f8fafc; }
.honor-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.honor-card-label {
  padding: 16px; text-align: center; font-size: 15px; color: #d97706;
  border-top: 1px solid #fde68a;
}

/* ===== Partners ===== */
.partners { background: #ffffff; padding: 96px 24px; }
.adv-grid { display: grid; gap: 20px; margin-bottom: 64px; }
@media (min-width: 768px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
.adv-card {
  padding: 28px 24px; border-radius: 14px; transition: all 0.3s;
  background: #fff; border: 1px solid #e2e8f0;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.adv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #0891b2); opacity: 0;
  transition: opacity 0.3s;
}
.adv-card:hover { border-color: rgba(5,150,105,0.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.adv-card:hover::before { opacity: 1; }
.adv-card-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 42px;
  line-height: 1; color: rgba(5,150,105,0.1); margin-bottom: 8px;
  transition: color 0.3s;
}
.adv-card:hover .adv-card-num { color: rgba(5,150,105,0.2); }
.adv-icon { font-size: 28px; margin-bottom: 12px; }
.adv-title { font-weight: 600; font-size: 16px; color: #0f172a; margin-bottom: 8px; }
.adv-desc { font-size: 15px; color: #64748b; line-height: 1.8; }
/* Data comparison bars */
.data-bars { margin-bottom: 96px; }
.data-bar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.data-bar-label { width: 140px; flex-shrink: 0; font-size: 14px; color: #64748b; text-align: right; }
.data-bar-track { flex: 1; height: 32px; border-radius: 8px; background: #f1f5f9; overflow: hidden; position: relative; }
.data-bar-fill {
  height: 100%; border-radius: 8px; display: flex; align-items: center; padding-left: 12px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; color: #fff;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1); width: 0;
}
.data-bar-fill.bar-green { background: linear-gradient(90deg, #059669, #0891b2); }
.data-bar-fill.bar-cyan { background: linear-gradient(90deg, #0891b2, #34d399); }
.data-bar-fill.bar-gold { background: linear-gradient(90deg, #d97706, #f59e0b); }
.partner-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.partner-tag {
  padding: 10px 16px; border-radius: 8px; transition: all 0.2s;
  background: #fff; border: 1px solid #e2e8f0;
  font-size: 15px; color: #475569;
}
.partner-tag:hover { background: #f0fdfa; color: #059669; border-color: rgba(5,150,105,0.3); }
.partner-tag-extra {
  padding: 10px 16px; border-radius: 8px;
  background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.2);
  font-size: 15px; color: #059669;
}

/* ===== Contact ===== */
.contact { background: #f1f5f9; padding: 96px 24px 0; }
.contact-grid { display: grid; gap: 32px; margin-bottom: 64px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-cta {
  padding: 32px; border-radius: 16px; display: flex; flex-direction: column;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border: 1px solid #a7f3d0;
}
.contact-cta-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  background: linear-gradient(135deg, #059669, #0891b2);
}
.contact-cta-title { font-weight: 700; font-size: 20px; color: #0f172a; margin-bottom: 12px; }
.contact-cta-desc { font-size: 15px; color: #64748b; line-height: 1.8; margin-bottom: 24px; flex: 1; }
.contact-cta-btn {
  width: 100%; padding: 12px; border-radius: 12px; transition: all 0.3s;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff; font-weight: 700; font-size: 15px;
}
.contact-cta-btn:hover { box-shadow: 0 8px 30px rgba(5,150,105,0.3); }
.contact-info { display: grid; gap: 20px; }
@media (min-width: 640px) { .contact-info { grid-template-columns: repeat(2, 1fr); } }
.contact-info-card { padding: 24px; border-radius: 12px; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 1px 4px rgba(0,0,0,0.03); }
.contact-info-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: rgba(5,150,105,0.1); color: #059669;
}
.contact-info-label { font-weight: 600; font-size: 16px; color: #0f172a; margin-bottom: 6px; }
.contact-info-value { font-size: 15px; color: #64748b; line-height: 1.7; white-space: pre-line; }

/* ===== Footer ===== */
.footer { border-top: 1px solid #e2e8f0; padding: 32px 24px; background: #f8fafc; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-icon {
  width: 24px; height: 24px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #059669, #0891b2);
}
.footer-logo-text { font-size: 15px; color: #475569; }
.footer-copy { font-size: 16px; color: #94a3b8; text-align: center; }
.footer-en { font-family: 'Rajdhani', sans-serif; font-size: 15px; color: #94a3b8; letter-spacing: 0.1em; }

/* ===== Wave Dividers ===== */
.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; margin-top: -1px; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider.flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* ===== Number Counter ===== */
.counter-animated { transition: all 0.3s; }

/* ===== Animations ===== */
@keyframes ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
