/* ============================================================
   golf_emerald · home.css · 高尔夫私人会籍
   翡翠果岭 + 暖金沙 + 球场夜
   ============================================================ */

/* ===== 1. HERO ===== */
.ge-hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(212, 165, 116, .14), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(4, 120, 87, .25), transparent 60%),
    var(--ks-bg);
}
.ge-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 165, 116, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 116, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ge-hero-inner { position: relative; z-index: 2; }

.ge-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: rgba(212, 165, 116, .12);
  border: 1px solid rgba(212, 165, 116, .35);
  color: #d4a574; font-weight: 600; font-size: 12.5px; letter-spacing: .8px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.ge-h1 {
  font-size: 56px; font-weight: 800; color: #fff;
  letter-spacing: -.5px; line-height: 1.12; margin: 0 0 22px;
}
.ge-em {
  display: block;
  font-size: 30px; font-weight: 700; font-style: normal;
  letter-spacing: 6px; margin-top: 8px;
  background: linear-gradient(90deg, #d4a574, #fde68a 60%, #34d399);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ge-lead {
  font-size: 16px; line-height: 1.78; color: #cbd5e1;
  margin: 0 0 22px;
}
.ge-bullets {
  list-style: none; padding: 0; margin: 0 0 30px;
}
.ge-bullets li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(212, 165, 116, .18);
  color: #d1d5db; font-size: 14px;
}
.ge-bullets li:last-child { border-bottom: none; }
.ge-bullets li i { color: #d4a574; width: 18px; }

.ge-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.ge-btn-main {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #d4a574, #f5d76b);
  color: #04221a; border-radius: 6px;
  text-decoration: none; transition: .25s;
  box-shadow: 0 12px 30px rgba(212, 165, 116, .35);
}
.ge-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 165, 116, .55);
  color: #04221a;
}
.ge-btn-main > i { font-size: 22px; flex-shrink: 0; }
.ge-btn-main > span {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  line-height: 1.18;
}
.ge-btn-main strong { font-size: 15px; font-weight: 700; }
.ge-btn-main small { font-size: 11px; letter-spacing: .5px; opacity: .78; font-weight: 500; }

.ge-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  color: #d4a574; border: 1px solid rgba(212, 165, 116, .5);
  border-radius: 6px; text-decoration: none;
  font-size: 14px; font-weight: 600; transition: .25s;
}
.ge-btn-ghost:hover {
  background: rgba(212, 165, 116, .1); border-color: #d4a574; color: #d4a574;
}
.ge-btn-ghost i { font-size: 14px; }

/* Hero 右侧 SVG 果岭 + 浮窗卡片 */
.ge-stage {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.ge-green {
  width: 100%; max-width: 460px; height: auto;
  filter: drop-shadow(0 20px 50px rgba(4, 120, 87, .55));
  animation: ge-rotate 60s linear infinite;
}
@keyframes ge-rotate {
  from { transform: rotate(-2deg); }
  50%  { transform: rotate(2deg); }
  to   { transform: rotate(-2deg); }
}
.ge-card {
  position: absolute;
  background: rgba(7, 59, 43, .92);
  border: 1px solid rgba(212, 165, 116, .35);
  border-radius: 6px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
  min-width: 180px;
}
.ge-c-1 { top: 30px; right: -10px; animation: ge-float 6s ease-in-out infinite; }
.ge-c-2 { bottom: 30px; left: -10px; animation: ge-float 6s ease-in-out 3s infinite; }
@keyframes ge-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.ge-card-eye {
  display: block; font-size: 10px; color: #d4a574;
  letter-spacing: 2.5px; font-weight: 700; margin-bottom: 4px;
}
.ge-card h5 { font-size: 16px; color: #fff; font-weight: 700; margin: 0 0 4px; }
.ge-card p { font-size: 12px; color: #94a3b8; margin: 0; }

/* ===== 通用 section ===== */
.ge-sec { padding: 80px 0; position: relative; }
.ge-sec-soft {
  background:
    radial-gradient(circle at 50% 0, rgba(212, 165, 116, .06), transparent 60%),
    var(--ks-bg-2);
  border-top: 1px solid rgba(212, 165, 116, .12);
  border-bottom: 1px solid rgba(212, 165, 116, .12);
}
.ge-head { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.ge-head.text-center { display: block; text-align: center; }
.ge-eye {
  display: inline-block; font-size: 12px; color: #d4a574;
  letter-spacing: 4px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px;
}
.ge-stitle {
  font-size: 32px; font-weight: 800; color: #fff;
  letter-spacing: .3px; margin: 0 0 8px; position: relative; display: inline-block;
}
.ge-stitle::after {
  content: ""; display: block; width: 56px; height: 3px; margin: 12px auto 0;
  background: linear-gradient(90deg, #047857, #d4a574);
}
.ge-head:not(.text-center) .ge-stitle::after { margin-left: 0; }
.ge-ssub { color: #94a3b8; margin: 0; font-size: 15px; }
.ge-more { color: #d4a574; font-weight: 600; text-decoration: none; }
.ge-more:hover { color: #fde68a; }

/* ===== 2. SOLUTIONS ===== */
.ge-sol {
  padding: 28px 22px; height: 100%;
  background: var(--ks-bg-3);
  border: 1px solid rgba(212, 165, 116, .15);
  border-radius: 6px; transition: .25s;
  position: relative; overflow: hidden;
}
.ge-sol::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #047857, #d4a574);
  transform: scaleX(0); transform-origin: left;
  transition: .3s;
}
.ge-sol:hover { transform: translateY(-4px); border-color: rgba(212, 165, 116, .4); box-shadow: 0 14px 32px rgba(0, 0, 0, .35); }
.ge-sol:hover::before { transform: scaleX(1); }
.ge-sol-i {
  width: 52px; height: 52px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212, 165, 116, .14);
  color: #d4a574; font-size: 22px; margin-bottom: 18px;
}
.ge-sol h3 { font-size: 16px; color: #fff; font-weight: 700; margin: 0 0 8px; }
.ge-sol p { font-size: 13px; color: #94a3b8; margin: 0; line-height: 1.6; }

/* ===== 3. HOLES ===== */
.ge-holes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.ge-hole {
  position: relative;
  padding: 26px 22px;
  background: linear-gradient(160deg, rgba(4, 120, 87, .25), var(--ks-bg-3));
  border: 1px solid rgba(212, 165, 116, .2);
  border-radius: 8px;
  overflow: hidden;
  transition: .25s;
}
.ge-hole:hover { transform: translateY(-3px); border-color: #d4a574; }
.ge-hole-no {
  position: absolute; top: 14px; right: 18px;
  font-size: 56px; font-weight: 900; color: rgba(212, 165, 116, .12);
  letter-spacing: -2px; line-height: 1;
}
.ge-hole h5 { font-size: 18px; color: #fff; font-weight: 700; margin: 0 0 6px; }
.ge-hole p { font-size: 13px; color: #cbd5e1; margin: 0 0 12px; }
.ge-hole-tag {
  display: inline-block; padding: 3px 10px; font-size: 11px;
  background: rgba(212, 165, 116, .15); color: #d4a574;
  border: 1px solid rgba(212, 165, 116, .35);
  border-radius: 4px; font-weight: 700; letter-spacing: .5px;
}

/* ===== 4. PROS ===== */
.ge-pros {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.ge-pro {
  text-align: center;
  padding: 24px 16px;
  background: var(--ks-bg-3);
  border: 1px solid rgba(212, 165, 116, .15);
  border-radius: 6px; transition: .25s;
}
.ge-pro:hover { transform: translateY(-3px); border-color: rgba(212, 165, 116, .4); }
.ge-pro-av {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; color: #04221a;
}
.ge-p-1 { background: linear-gradient(135deg, #d4a574, #fde68a); }
.ge-p-2 { background: linear-gradient(135deg, #047857, #34d399); color: #fff; }
.ge-p-3 { background: linear-gradient(135deg, #f9a8d4, #fde68a); }
.ge-p-4 { background: linear-gradient(135deg, #38bdf8, #d4a574); }
.ge-p-5 { background: linear-gradient(135deg, #fbbf24, #fde68a); }
.ge-p-6 { background: linear-gradient(135deg, #06b6d4, #34d399); color: #fff; }
.ge-p-7 { background: linear-gradient(135deg, #d4a574, #047857); color: #fff; }
.ge-p-8 { background: linear-gradient(135deg, #ec4899, #d4a574); color: #fff; }
.ge-pro h5 { font-size: 15px; color: #fff; font-weight: 700; margin: 0 0 4px; }
.ge-pro span { display: block; font-size: 12px; color: #94a3b8; margin-bottom: 6px; }
.ge-pro b { color: #d4a574; font-size: 13px; font-weight: 700; }

/* ===== 5. TEE 日历 ===== */
.ge-tee-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ge-tee {
  padding: 26px 22px;
  background: var(--ks-bg-3);
  border: 1px solid rgba(212, 165, 116, .15);
  border-radius: 6px;
  position: relative;
  transition: .25s;
}
.ge-tee:hover { transform: translateY(-3px); border-color: #d4a574; box-shadow: 0 12px 28px rgba(0, 0, 0, .3); }
.ge-tee-mo {
  display: inline-block; font-size: 38px; font-weight: 900;
  background: linear-gradient(135deg, #d4a574, #fde68a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 10px;
}
.ge-tee h5 { font-size: 17px; color: #fff; font-weight: 700; margin: 0 0 6px; }
.ge-tee p { font-size: 13px; color: #cbd5e1; margin: 0 0 12px; }
.ge-tee-tag {
  display: inline-block; padding: 3px 10px; font-size: 11px;
  background: rgba(4, 120, 87, .25); color: #34d399;
  border: 1px solid rgba(4, 120, 87, .5);
  border-radius: 4px; font-weight: 700;
}

/* ===== 6. RANGE 设施 ===== */
.ge-fac {
  padding: 28px 22px;
  background: var(--ks-bg-3);
  border: 1px solid rgba(212, 165, 116, .15);
  border-radius: 6px;
  text-align: center;
  transition: .25s;
}
.ge-fac:hover { transform: translateY(-3px); border-color: rgba(212, 165, 116, .4); }
.ge-fac-no {
  display: block; font-size: 44px; font-weight: 900;
  background: linear-gradient(135deg, #d4a574, #34d399);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 8px;
}
.ge-fac-no small { font-size: 14px; color: #94a3b8; font-weight: 600; margin-left: 4px; -webkit-text-fill-color: #94a3b8; }
.ge-fac h4 { font-size: 16px; color: #fff; font-weight: 700; margin: 0 0 6px; }
.ge-fac p { font-size: 13px; color: #94a3b8; margin: 0; }

/* ===== 7. MEMBERSHIP 会籍 ===== */
.ge-mem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ge-mem {
  padding: 36px 28px;
  background: var(--ks-bg-3);
  border: 1px solid rgba(212, 165, 116, .2);
  border-radius: 8px;
  position: relative;
  transition: .25s;
}
.ge-mem:hover { transform: translateY(-4px); border-color: rgba(212, 165, 116, .5); }
.ge-mem-hot {
  background: linear-gradient(160deg, rgba(212, 165, 116, .15), var(--ks-bg-3));
  border-color: #d4a574;
  box-shadow: 0 16px 40px rgba(212, 165, 116, .15);
}
.ge-mem-tier {
  display: inline-block; padding: 4px 14px;
  background: rgba(212, 165, 116, .2); color: #d4a574;
  font-size: 11px; letter-spacing: 3px; font-weight: 800;
  border-radius: 4px; margin-bottom: 16px;
}
.ge-mem-hot .ge-mem-tier {
  background: linear-gradient(135deg, #d4a574, #fde68a);
  color: #04221a;
}
.ge-mem h3 { font-size: 24px; color: #fff; font-weight: 800; margin: 0 0 14px; }
.ge-mem-price { font-size: 38px; color: #d4a574; font-weight: 900; line-height: 1; margin: 0 0 22px; }
.ge-mem-price span { font-size: 14px; color: #94a3b8; font-weight: 500; margin-left: 6px; }
.ge-mem ul { list-style: none; padding: 0; margin: 0; }
.ge-mem ul li {
  padding: 8px 0;
  font-size: 14px; color: #cbd5e1;
  border-bottom: 1px dashed rgba(212, 165, 116, .12);
  position: relative; padding-left: 22px;
}
.ge-mem ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: #34d399; font-weight: 700;
}
.ge-mem ul li:last-child { border-bottom: none; }

/* ===== CTA Section ===== */
.ge-cta-sec {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212, 165, 116, .14), transparent 70%),
    linear-gradient(180deg, var(--ks-bg-2), var(--ks-bg));
  border-top: 1px solid rgba(212, 165, 116, .15);
  border-bottom: 1px solid rgba(212, 165, 116, .15);
}
.ge-cta-sec h2 { font-size: 34px; color: #fff; font-weight: 800; margin: 0 0 14px; }
.ge-cta-sec p { color: #cbd5e1; font-size: 16px; margin: 0 0 30px; }
.ge-cta-btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== NEWS ===== */
.ge-news-cat {
  padding: 24px;
  background: var(--ks-bg-3);
  border: 1px solid rgba(212, 165, 116, .15);
  border-radius: 6px; height: 100%;
}
.ge-news-cat h5 { font-size: 16px; color: #fff; font-weight: 700; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(212, 165, 116, .2); }
.ge-news-cat h5 i { color: #d4a574; margin-right: 6px; }
.ge-news-list { list-style: none; padding: 0; margin: 0; }
.ge-news-list li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, .06);
  font-size: 13.5px;
}
.ge-news-list li:last-child { border-bottom: none; }
.ge-news-list li a {
  flex: 1; color: #cbd5e1; text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ge-news-list li a:hover { color: #d4a574; }
.ge-news-list li span { color: #6b7280; font-size: 12px; flex-shrink: 0; }

/* ===== 响应式 ===== */
@media (max-width: 991px) {
  .ge-h1 { font-size: 42px; }
  .ge-em { font-size: 22px; }
  .ge-stage { height: 360px; margin-top: 40px; }
  .ge-holes { grid-template-columns: repeat(2, 1fr); }
  .ge-pros { grid-template-columns: repeat(2, 1fr); }
  .ge-tee-grid { grid-template-columns: repeat(2, 1fr); }
  .ge-mem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .ge-h1 { font-size: 34px; }
  .ge-holes, .ge-pros, .ge-tee-grid { grid-template-columns: 1fr; }
}

/* ===== 首页 Hero 下方独立锚点跳转栏 ===== */
nav.ks-anchor-nav {
  position: relative; margin: -10px 0 50px; padding: 18px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.35) 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
nav.ks-anchor-nav > .container { display: flex; justify-content: center; }
nav.ks-anchor-nav ul {
  display: flex; flex-wrap: nowrap; overflow-x: auto;
  list-style: none !important; margin: 0; padding: 5px 8px; gap: 4px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 28px rgba(0,0,0,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  scrollbar-width: none;
}
nav.ks-anchor-nav ul::-webkit-scrollbar { display: none; }
nav.ks-anchor-nav li { list-style: none !important; flex-shrink: 0; margin: 0; padding: 0; }
nav.ks-anchor-nav li::marker { content: ""; }
nav.ks-anchor-nav a {
  display: inline-flex; align-items: center; position: relative;
  padding: .55rem 1.15rem;
  font-size: 13.5px; font-weight: 600; letter-spacing: .35px;
  color: rgba(255,255,255,.66); text-decoration: none !important;
  border-radius: 999px; white-space: nowrap;
  transition: color .22s, background .22s, transform .22s, box-shadow .22s;
}
nav.ks-anchor-nav li + li > a::before {
  content: ""; position: absolute;
  left: -2px; top: 50%; width: 1px; height: 11px;
  background: rgba(255,255,255,.12); transform: translateY(-50%);
}
nav.ks-anchor-nav a:hover {
  color: #fff;
  background: linear-gradient(135deg, #d4a574, #d4a574cc);
  box-shadow: 0 6px 18px #d4a57455;
  transform: translateY(-1px);
}
@media (max-width: 767.98px) {
  nav.ks-anchor-nav { margin: -4px 0 32px; padding: 14px 0; }
  nav.ks-anchor-nav > .container { padding: 0 12px; }
  nav.ks-anchor-nav ul { justify-content: flex-start; }
  nav.ks-anchor-nav a { padding: .5rem 1rem; font-size: 12.5px; }
}


/* =================================================== */
/* MOBILE ENHANCED · 旧模板通用 H5 自适应规则           */
/* =================================================== */
.ge-hero img, .ge-solutions img, .ge-data img, .ge-news img, .ge-tiers img { max-width: 100%; height: auto; }

@media (max-width: 991.98px) {
  .ge-hero { padding: 80px 20px 60px; }
  .ge-hero h1, .ge-hero .ge-h1 { font-size: 48px !important; line-height: 1.05 !important; }
  .ge-hero-lead, .ge-hero p { font-size: 16px !important; line-height: 1.7 !important; }
}

@media (max-width: 768px) {
  /* Hero 放大 */
  .ge-hero { padding: 72px 20px 56px; }
  .ge-hero h1, .ge-hero .ge-h1 { font-size: 40px !important; line-height: 1.1 !important; }
  .ge-hero h1 em, .ge-hero .ge-h1 em { font-size: 40px !important; }
  .ge-hero-tag { font-size: 12px !important; padding: 8px 14px !important; margin-bottom: 24px !important; }
  .ge-hero-lead, .ge-hero p { font-size: 15px !important; line-height: 1.75 !important; margin-bottom: 24px !important; }
  .ge-hero-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  .ge-hero-cta a { padding: 16px 20px !important; font-size: 15px !important; width: 100%; box-sizing: border-box; text-align: center; border-radius: 10px !important; min-height: 48px; }
  /* Stats 改 2 列 */
  .ge-hero-stats, .ge-hero-numbers { grid-template-columns: 1fr 1fr !important; gap: 0 !important; margin-top: 32px !important; }
  .ge-hero-stats div, .ge-num-cell { padding: 18px 14px !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ge-hero-stats strong, .ge-hero-stats b, .ge-num-cell strong { font-size: 28px !important; }
  .ge-hero-stats span, .ge-num-cell span { font-size: 12px !important; }
  /* Sections 网格改单列 */
  .ge-solutions, .ge-data, .ge-tiers, .ge-news, .ge-final, .ge-features { padding: 56px 0 !important; }
  .ge-sol-grid, .ge-tier-grid, .ge-news-grid, .ge-sol, .ge-cabs, .ge-tokens, .ge-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .ge-sol-card, .ge-tier-card, .ge-news-card, .ge-sol, .ge-cab, .ge-tok { padding: 24px 20px !important; border-radius: 12px !important; }
  .ge-sol-card h3, .ge-tier-card h3, .ge-news-card h3 { font-size: 18px !important; }
  .ge-sol-card p, .ge-tier-card p, .ge-news-card p { font-size: 14px !important; line-height: 1.7 !important; }
  /* Section title */
  .ge-sec-title, .ge-sec-head h2, .ge-final h2 { font-size: 26px !important; line-height: 1.25 !important; }
  .ge-sec-sub, .ge-sec-head p { font-size: 14px !important; }
  /* Final CTA 竖排 */
  .ge-final { padding: 56px 20px !important; }
  .ge-final-actions { flex-direction: column; gap: 10px; }
  .ge-final-actions a, .ge-final-actions .btn { width: 100%; box-sizing: border-box; padding: 14px 20px !important; font-size: 15px !important; min-height: 48px; border-radius: 10px !important; }
  /* Keywords chips */
  .ge-chip-grid { gap: 6px; }
  .ge-chip { padding: 8px 14px !important; font-size: 13px !important; }
  /* 表格横滚 */
  .ge-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ge-table th, .ge-table td { font-size: 13px !important; padding: 10px 8px !important; }
}

@media (max-width: 480px) {
  .ge-hero h1, .ge-hero .ge-h1 { font-size: 32px !important; }
  .ge-hero h1 em, .ge-hero .ge-h1 em { font-size: 32px !important; }
  .ge-hero-stats strong, .ge-hero-stats b { font-size: 22px !important; }
}
