/* ============================================
   艾菲尔KTV — Main Stylesheet
   暗金比例 | 1.618黄金分割 + 底部固定电话条
   Baidu SEO Optimized
   ============================================ */

/* --- CSS Variables --- */
:root {
  --gold: #6C5CE7;
  --gold2: #8B7CF7;
  --color-bg: #0A0A0A;
  --color-bg-elevated: #111111;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-text: #EDEDED;
  --color-text-muted: #C0C0C0;
  --color-text-dim: #A0A0A0;
  --font-heading: 'Playfair Display', 'Noto Serif SC', serif;
  --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-w: 1240px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  border-bottom: 1px solid var(--color-border);
  background: rgba(10,10,10,.9); backdrop-filter: blur(20px);
}
.header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; background: var(--gold); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; font-size: 18px; font-weight: 700; color: #000; }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--color-text); }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a { font-size: .825rem; font-weight: 500; color: rgba(255,255,255,.85); transition: color .25s; position: relative; white-space: nowrap; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .3s; }
.nav a:hover, .nav a.active { color: var(--color-text); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.nav-phone::after { display: none; }

.nav-phone { display: inline-flex; align-items: center; gap: 6px; padding: 10px 24px; background: linear-gradient(135deg,var(--gold),var(--gold2)); color: #000; font-weight: 700; font-size: .85rem; border-radius: 8px; transition: transform .25s,box-shadow .3s; touch-action: manipulation; box-shadow: 0 2px 12px rgba(108,92,231,.25); }
.nav-phone:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,92,231,.4),0 0 40px rgba(108,92,231,.15); color: #000 !important; }
.nav-phone:active { transform: scale(.97); }
.nav-phone svg { width: 15px; height: 15px; }

.header-phone { display: none; align-items: center; justify-content: center; gap: 6px; height: 36px; padding: 10px 18px; background: linear-gradient(135deg,var(--gold),var(--gold2)); color: #000; border-radius: 8px; font-size: .75rem; font-weight: 700; transition: transform .2s,box-shadow .3s; -webkit-tap-highlight-color: transparent; box-shadow: 0 2px 12px rgba(108,92,231,.25); }
.header-phone:active { transform: scale(.95); }
.header-phone svg { width: 14px; height: 14px; flex-shrink: 0; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: var(--color-text); transition: all .3s; }

@media (max-width: 900px) {
  .nav { display: none !important; }
  .header-phone { display: inline-flex !important; }
  .nav-toggle { display: flex; }
}

/* --- Mobile Bottom Tab Bar --- */
.mobile-tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 2px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: .62rem;
  font-weight: 500;
  transition: color .2s;
  flex: 1;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.tab-item svg { width: 22px; height: 22px; }
.tab-item.active { color: var(--gold); }

@media (max-width: 768px) {
  .nav-toggle { display: none !important; }
  .mobile-tab-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* --- Mobile Floating Call Button --- */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 84px;
  right: 16px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  box-shadow: 0 4px 16px rgba(108,92,231,.4);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-call-fab:active { transform: scale(.92); }
.mobile-call-fab svg { width: 22px; height: 22px; }
@media (max-width: 768px) {
  .mobile-call-fab { display: flex; }
}

/* --- Accessibility --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Hero --- */
.hero { display: flex; padding-top: 70px; }
@media (min-width: 769px) { .hero { padding-top: 140px; } }
.hero-container { display: flex; width: 100%; }
.hero-flex-full { width: 100%; }
.hero-sub { margin-top: 12px; }
.hero-info-section { margin-top: 0; position: relative; z-index: 2; padding-top: 0 !important; }
@media (max-width: 768px) { .hero { min-height: auto; padding: 75px 0 0 0; align-items: flex-start; } }
.hero-flex { display: flex; align-items: center; width: 100%; gap: 0; }
@media (max-width: 768px) { .hero-flex { flex-direction: column; gap: 16px; } }
.hero-flex > .hero-img { order: 1; }
.hero-flex > .hero-text { order: 2; }
@media (min-width: 769px) {
  .hero-flex > .hero-img { order: 2; }
  .hero-flex > .hero-text { order: 1; }
}

.hero-text { flex: 1; padding-right: 5%; }
.hero-text .index { font-family: var(--font-heading); font-size: 6rem; font-weight: 700; line-height: 1; color: rgba(108,92,231,.12); margin-bottom: -20px; margin-left: -6px; }
.hero-text .eyebrow { font-size: .62rem; letter-spacing: 8px; color: var(--gold); margin-bottom: 20px; }
.hero-text h1 { font-family: var(--font-heading); font-size: 67.5px; font-weight: 700; line-height: 1.04; margin-bottom: 16px; }
.hero-text h1 em { font-style: normal; color: var(--gold); }
.hero-text p { color: var(--color-text-muted); font-size: .9rem; line-height: 1.8; max-width: 420px; margin-bottom: 15px; }
@media (max-width: 768px) {
  .hero-text { padding-right: 0; }
  .hero-text .index { font-size: 3.5rem; margin-bottom: -10px; margin-left: -3px; }
  .hero-text .eyebrow { font-size: .56rem; letter-spacing: 5px; margin-bottom: 10px; }
  .hero-text h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 10px; }
  .hero-text p { font-size: .8rem; max-width: 100%; line-height: 1.65; margin-bottom: 12px; }
}

.hero-img { flex: 2.2; position: relative; aspect-ratio: 4/3; overflow: hidden; }
@media (max-width: 768px) { .hero-img { flex: auto; width: 100%; aspect-ratio: 16/10; } }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame { position: absolute; top: 20px; right: 20px; bottom: 20px; left: 20px; border: 1px solid rgba(108,92,231,.2); pointer-events: none; z-index: 2; }

/* --- Buttons --- */
.btn-fill { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--gold); color: #000; font-size: .78rem; letter-spacing: 2px; font-weight: 600; margin-right: 12px; transition: all .3s; vertical-align: middle; border: 1px solid transparent; }
.btn-fill:hover { background: var(--gold2); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border: 1px solid var(--gold); color: var(--gold); font-size: .78rem; letter-spacing: 2px; font-weight: 600; transition: all .3s; vertical-align: middle; }
.btn-outline:hover { background: var(--gold); color: #000; }
@media (max-width: 768px) {
  .btn-fill, .btn-outline { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-right: 0; margin-bottom: 10px; padding: 14px 20px; }
}

/* --- Rule --- */
.rule-gold { width: 100%; max-width: 100px; height: 1px; background: var(--gold); margin: 0 0 60px; }

/* --- Sections --- */
.section { padding: 20px 0; }
.section-label { font-size: .62rem; letter-spacing: 6px; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 28px; color: #6C5CE7; text-align: center; }
@media (max-width: 768px) {
  .section { padding: 12px 0; }
  .section-label { font-size: .56rem; letter-spacing: 4px; margin-bottom: 8px; }
  .section-title { font-size: 1.5rem; margin-bottom: 18px; }
  .rule-gold { margin: 0 0 36px; max-width: 60px; }
}

/* --- Room List (横向列表式 / 移动端卡片式) --- */
.room-list { display: flex; flex-direction: column; gap: 0; }
.room-item { display: flex; align-items: center; gap: 0; border-top: 1px solid rgba(255,255,255,.04); padding: 0; padding-bottom: 18px; transition: all .3s; position: relative; }
.room-item:last-child { border-bottom: 1px solid rgba(255,255,255,.04); }
.room-item:hover { background: rgba(255,255,255,.01); }
@media (max-width: 768px) {
  .room-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .room-item { flex-direction: column; align-items: stretch; padding: 0; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-bg-elevated); overflow: hidden; }
  .room-item:last-child { border-bottom: 1px solid var(--color-border); }
  .room-item:hover { background: var(--color-bg-elevated); border-color: rgba(108,92,231,.3); }
}

.room-num { width: 60px; text-align: center; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
@media (max-width: 768px) { .room-num { display: none; } }

.room-thumb { width: 240px; height: 150px; flex-shrink: 0; overflow: hidden; }
@media (max-width: 768px) { .room-thumb { width: 100%; height: 120px; } }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-item:hover .room-thumb img { transform: scale(1.05); }

.room-info { flex: 1; padding: 28px 32px; }
@media (max-width: 768px) { .room-info { padding: 14px 12px 8px; } }
.room-info h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 4px; }
@media (max-width: 768px) { .room-info h3 { font-size: .9rem; } }
.room-info p { font-size: .78rem; color: var(--color-text-muted); }
@media (max-width: 768px) {
  .room-info p { font-size: .7rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (min-width: 769px) {
  .room-info p { display: block; overflow: visible; -webkit-line-clamp: unset; }
}

.room-meta { width: 140px; text-align: right; padding-right: 32px; flex-shrink: 0; }
@media (max-width: 768px) { .room-meta { width: 100%; text-align: left; padding: 0 12px 12px; display: flex; align-items: center; gap: 6px; } }
.room-meta-label { font-size: .68rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 1px; }
.room-meta .cap { font-size: 1rem; font-weight: 600; color: var(--gold); }

/* --- Features (三列带数字) --- */
.features-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
@media (max-width: 768px) { .features-row { grid-template-columns: 1fr; gap: 24px; } }
.feat-item { display: flex; align-items: center; gap: 24px; border-top: 1px solid rgba(108,92,231,.2); padding-top: 24px; }
@media (max-width: 768px) { .feat-item { gap: 16px; padding-top: 18px; align-items: flex-start; } }
.feat-item .num { font-family: var(--font-heading); font-size: 3.6rem; font-weight: 700; color: var(--gold); flex-shrink: 0; line-height: 1; }
@media (max-width: 768px) { .feat-item .num { font-size: 2.4rem; min-width: 48px; } }
.feat-item h4 { font-size: 1rem; margin-bottom: 8px; }
.feat-item p { font-size: .8rem; color: var(--color-text-muted); line-height: 1.7; }

/* --- CTA Bar --- */
.cta-bar { display: flex; align-items: center; justify-content: space-between; background: rgba(108,92,231,.04); border: 1px solid rgba(108,92,231,.1); padding: 36px 40px; flex-wrap: wrap; gap: 20px; }
@media (max-width: 768px) { .cta-bar { flex-direction: column; align-items: stretch; padding: 28px 20px; gap: 16px; text-align: center; } }
.cta-bar-text h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold); }
@media (max-width: 768px) { .cta-bar-text h3 { font-size: 1.35rem; } }
.cta-bar-text p { color: var(--color-text-muted); font-size: .8rem; margin-top: 4px; }
.cta-bar-tel { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.3rem; font-weight: 700; color: #000; letter-spacing: 1px; padding: 16px 32px; background: linear-gradient(135deg, var(--gold), var(--gold2)); border-radius: 8px; border: none; transition: transform .2s, box-shadow .3s; text-decoration: none; }
.cta-bar-tel:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,92,231,.4); color: #000; }
@media (max-width: 768px) { .cta-bar-tel { font-size: 1.1rem; padding: 14px 24px; width: 100%; } }



/* --- Footer --- */
.footer { padding: 40px 0 30px; border-top: 1px solid var(--color-border); }
@media (max-width: 768px) { .footer { padding: 18px 0 18px; } }
.footer-grid { display: flex; flex-direction: column; gap: 40px; margin-bottom: 40px; }
.footer-nav-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.footer-nav-row a { font-size: .8rem; color: var(--color-text-muted); transition: color .2s; }
.footer-nav-row a:hover { color: var(--gold); }
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 15px; }
.footer-nav-links a { font-size: .8rem; color: var(--color-text-muted); transition: color .2s; }
.footer-nav-links a:hover { color: var(--gold); }
.footer-main { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; }
@media (max-width: 768px) { .footer-main { flex-direction: column; align-items: center; text-align: center; gap: 28px; } }
.footer-brand-col { max-width: 320px; }
@media (max-width: 768px) { .footer-brand-col { max-width: 100%; display: flex; flex-direction: column; align-items: center; } }
.footer-brand-col .address { font-size: .78rem; color: var(--color-text-dim); line-height: 1.6; margin-top: 12px; }
.footer-qr-col { text-align: center; }
.footer-qr-col img { width: 100px; height: 100px; border-radius: 8px; border: 1px solid var(--color-border); object-fit: contain; }
@media (max-width: 768px) { .footer-qr-col img { width: 160px; height: 160px; } }
.footer-qr-label { font-size: .72rem; color: var(--color-text-muted); margin-bottom: 10px; }
.footer-col h5 { font-size: .7rem; letter-spacing: 3px; margin-bottom: 14px; text-transform: uppercase; }
.footer-col a { display: block; font-size: .8rem; color: var(--color-text-muted); padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 24px; text-align: center; font-size: .72rem; color: var(--color-text-dim); }

/* --- CSS Variables Additions for Sub-Pages --- */
:root {
  --color-accent: #6C5CE7;
  --text-sm: .82rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
}

/* --- Page Header (sub-page banner) --- */
.page-header { padding: 110px 0 48px; text-align: center; }
@media (max-width: 768px) { .page-header { padding: 110px 0 0 0; } }
.page-header h1 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 8px; }
.page-header p { color: var(--color-text-muted); font-size: .9rem; }

/* --- Breadcrumb --- */
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .78rem; color: var(--color-text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--color-text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.sep { color: var(--color-text-dim); }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 24px; border-radius: 6px; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .25s; border: none; text-align: center; }
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold2); }
.btn-ghost { border: 1px solid var(--gold); color: var(--gold); background: transparent; padding: 8px 20px; font-size: .75rem; }
.btn-ghost:hover { background: var(--gold); color: #000; }

/* --- Text Utilities --- */
.text-accent { color: var(--gold); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* --- Spacing Utilities --- */
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-48 { margin-top: 48px; }
.ml-16 { margin-left: 16px; }

/* --- Card System --- */
.card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; transition: transform .3s, border-color .3s; }
.card:hover { transform: translateY(-4px); border-color: rgba(108,92,231,.25); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px 24px; }
.card-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; }
.card-text { font-size: .82rem; color: var(--color-text-muted); line-height: 1.6; }
.card-footer { padding: 0 24px 20px; display: flex; align-items: center; justify-content: space-between; }

/* --- Room Grid --- */
.room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
@media (max-width: 768px) { .room-grid { grid-template-columns: 1fr; } }

/* --- News Grid --- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }
.news-tag { font-size: .68rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; display: inline-block; }
.news-date { font-size: .75rem; color: var(--color-text-dim); }

/* --- Tag Pills --- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; padding: 8px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 100px; font-size: .78rem; color: var(--color-text-muted); transition: all .2s; }
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination .current { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px; font-size: .82rem; color: var(--color-text-muted); transition: all .2s; }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: #000; border-color: var(--gold); }
.pagination .is-disabled { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.06); border-radius: 6px; font-size: .82rem; color: var(--color-text-muted); opacity: .35; cursor: not-allowed; user-select: none; }

/* --- Section Header --- */
.section-header { text-align: center; margin-bottom: 48px; }
.divider-accent { width: 60px; height: 1px; background: var(--gold); margin: 20px auto 0; }
.divider-accent.left { margin-left: 0; }

/* --- Feature Cards --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; padding: 32px 28px; transition: border-color .3s; }
@media (max-width: 768px) { .feature-card { padding: 8px 28px; } }
.feature-card:hover { border-color: rgba(108,92,231,.2); }
.feature-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feature-icon { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; }
.feature-title { font-family: var(--font-heading); font-size: 1.1rem; }
.feature-desc { font-size: .82rem; color: var(--color-text-muted); line-height: 1.6; }

/* --- Equipment Row (4-col horizontal with dividers) --- */
.equipment-row { display: flex; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; }
@media (max-width: 768px) { .equipment-row { flex-direction: column; } }
.equipment-col { flex: 1; padding: 32px 28px; position: relative; }
@media (max-width: 768px) { .equipment-col { padding: 10px 28px; } }
.equipment-col + .equipment-col { border-left: 1px solid var(--color-border); }
@media (max-width: 768px) { .equipment-col + .equipment-col { border-left: none; border-top: 1px solid var(--color-border); } }
.equipment-col .feature-card-header { margin-bottom: 12px; }
.equipment-col .feature-desc { font-size: .82rem; color: var(--color-text-muted); line-height: 1.6; }

/* --- Hero Info Bar --- */
.hero-info-bar { display: flex; align-items: center; justify-content: center; gap: 48px; padding: 24px 32px; border-top: 1px solid rgba(108,92,231,.12); border-bottom: 1px solid rgba(108,92,231,.12); }
@media (min-width: 769px) {
  .hero-info-section { margin-top: 0; }
  .hero-info-bar { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .hero-info-bar { flex-direction: column; gap: 12px; padding: 16px 20px; }
  main > section:nth-of-type(2) { margin-top: 0 !important; }
}
.hero-info-item { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--color-text); }
@media (max-width: 768px) { .hero-info-item { font-size: .78rem; gap: 6px; } }
.hero-info-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.hero-info-item a { color: var(--gold); font-weight: 800; }

/* --- Footer Address --- */
.footer-address { display: flex; align-items: flex-start; gap: 8px; font-size: .78rem; color: var(--color-text-muted); margin-top: 10px; line-height: 1.5; }
.footer-address svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* --- About Page --- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .about-story { grid-template-columns: 1fr; } }
.about-image { border-radius: 8px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 768px) { .about-values { grid-template-columns: 1fr; } }
.about-value { text-align: center; }
.about-value-num { font-family: var(--font-heading); font-size: 2.4rem; color: var(--gold); }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; padding: 22px; height: 100%; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(108,92,231,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.contact-item-label { font-size: .75rem; color: var(--color-text-dim); margin-bottom: 4px; }
.contact-item-value { font-size: .9rem; }
.contact-qr { display: flex; gap: 20px; margin-top: 24px; }
.contact-qr-item { text-align: center; }
.contact-qr-item img { width: 120px; height: 120px; border-radius: 8px; border: 1px solid var(--color-border); object-fit: contain; }
.contact-qr-label { font-size: .72rem; color: var(--color-text-muted); margin-top: 8px; }

/* --- Form --- */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .82rem; font-weight: 500; }
.form-input, .form-select, .form-textarea { padding: 12px 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: var(--color-text); font-size: .85rem; font-family: inherit; transition: border-color .2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-select { appearance: none; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: .72rem; color: var(--color-text-dim); margin-top: 8px; }

/* --- Jobs Page --- */
.jobs-cta-banner { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, rgba(108,92,231,.08), rgba(108,92,231,.02)); border: 1px solid rgba(108,92,231,.12); border-radius: 12px; padding: 36px 40px; gap: 32px; }
@media (max-width: 768px) { .jobs-cta-banner { flex-direction: column; text-align: center; } }
.jobs-qr { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.jobs-qr img { width: 100px; height: 100px; border-radius: 8px; border: 1px solid var(--color-border); object-fit: contain; }
.job-list { display: flex; flex-direction: column; gap: 16px; }
.job-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; padding: 28px; transition: border-color .3s; }
.job-card:hover { border-color: rgba(108,92,231,.2); }
.job-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.job-title { font-family: var(--font-heading); font-size: 1.2rem; }
.job-salary { font-weight: 700; color: var(--gold); font-size: .95rem; }
.job-meta { display: flex; gap: 20px; font-size: .78rem; color: var(--color-text-dim); margin-bottom: 12px; flex-wrap: wrap; }
.job-desc { font-size: .85rem; color: var(--color-text-muted); line-height: 1.7; }

/* --- Fade-up Animation --- */
.fade-up { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- Toast --- */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 999; padding: 14px 28px; background: var(--gold); color: #000; border-radius: 8px; font-weight: 600; font-size: .85rem; opacity: 0; transition: opacity .3s; pointer-events: none; }
.toast.show { opacity: 1; }

/* --- Quick Service Grid --- */
.quick-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 768px) { .quick-service-grid { grid-template-columns: 1fr; } .quick-service-grid > div { padding: 5px 25px !important; } }

/* --- Shared utility classes --- */
.section-pt0 { padding-top: 0 !important; }
.section-bg-elevated { background: var(--color-bg-elevated) !important; }
.text-accent { color: #6C5CE7 !important; }
.footer-tagline { color: var(--color-text-muted); font-size: .78rem; margin-top: 8px; }
.footer-addr-icon { width: 14px; height: 14px; color: var(--gold); vertical-align: middle; margin-right: 4px; }
.page-header-h1 { color: #6C5CE7; }
.process-pt-92 { padding-top: 92px; }
.page-header-about { text-align: center; padding: 0 0 24px; }
@media (min-width: 769px) {
  .page-header-about .text-accent { margin-top: 90px; }
}
.text-white { color: #fff; }
.tel-gold { color: var(--gold); font-weight: 700; }
.btn-icon-left { width: 20px; height: 20px; }
.cta-bar-tel-icon { width: 20px; height: 20px; }
.qr-img-contact { width: 160px; height: 160px; border-radius: 10px; }
.qr-img-sm { width: 140px; height: 140px; border-radius: 10px; }
.booking-summary { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; padding: 28px; }
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
@media (max-width: 768px) { .booking-layout { grid-template-columns: 1fr; } }
.section-pb40 { padding-bottom: 40px; }

/* === News Card List (migrated from news.html) === */
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
@media (max-width: 900px) { .news-layout { grid-template-columns: 1fr; } }

.news-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 768px) { .news-list { grid-template-columns: 1fr; } }

.news-item { display: flex; flex-direction: column; gap: 8px; padding: 28px 24px; background: var(--color-bg-elevated); border: 1px solid rgba(108,92,231,.18); border-radius: 12px; text-decoration: none; transition: border-color .25s, transform .25s, box-shadow .25s; min-width: 0; }
.news-item:hover { border-color: rgba(108,92,231,.35); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.28); }

.news-item-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; overflow: visible; }
.news-item-date { font-size: .75rem; color: var(--color-text-muted); font-weight: 500; }
.news-item-tags { display: flex; gap: 6px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 2px; }
.news-item-tags::-webkit-scrollbar { display: none; }
.news-item-tag { font-size: .6875rem; padding: 2px 10px; border: 1px solid rgba(108,92,231,.25); border-radius: 9999px; color: var(--gold); background: rgba(108,92,231,.08); font-weight: 500; white-space: nowrap; flex-shrink: 0; }

.news-item-title { font-size: 1.1875rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.4; color: var(--color-text); transition: color .25s; margin: 2px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.4em * 2); }
.news-item:hover .news-item-title { color: var(--gold); }

.news-item-excerpt { font-size: .875rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.7em * 2); }

.news-item-link { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; font-weight: 600; color: var(--gold); margin-top: 4px; transition: gap .25s; align-self: flex-end; }
.news-item:hover .news-item-link { gap: 10px; }

/* === Pagination (migrated from news.html) === */
.pagination-wrapper { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--color-border); }
.pagination-info { text-align: center; font-size: .82rem; color: var(--color-text-muted); margin-bottom: 20px; }
.pagination-info span { color: var(--gold); font-weight: 600; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; }
.page-btn { display: flex; align-items: center; gap: 6px; padding: 10px 18px; font-size: .82rem; font-weight: 500; color: var(--color-text-muted); background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; transition: all .2s; }
.page-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }
.page-numbers { display: flex; gap: 8px; }
.page-num { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 500; color: var(--color-text-muted); background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; transition: all .2s; }
.page-num:hover { border-color: var(--gold); color: var(--gold); }
.page-num.active { background: var(--gold); color: #000; border-color: var(--gold); }
.page-dots { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); }

/* === News Sidebar (migrated from news.html) === */
.news-sidebar { display: flex; flex-direction: column; gap: 24px; }
.news-sidebar-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; padding: 24px; }
.news-sidebar-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--color-border); }
.news-sidebar-card a { display: block; font-size: .82rem; color: var(--color-text-muted); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04); transition: color .2s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-sidebar-card a:hover { color: var(--gold); }
.news-sidebar-card a:last-child { border-bottom: none; }
.news-sidebar-card .hot-num { display: inline-block; width: 20px; height: 20px; line-height: 20px; text-align: center; background: var(--gold); color: #000; border-radius: 4px; font-size: .7rem; font-weight: 700; margin-right: 8px; }
.news-sidebar-card .hot-num.dim { background: rgba(255,255,255,.1); color: var(--color-text-muted); }

/* === Article Detail (migrated from news-detail.html) === */
.article-hero { position: relative; padding: calc(var(--header-height) + 64px) var(--space-lg) 48px; overflow: hidden; text-align: center; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(108,92,231,.10), transparent 60%); pointer-events: none; }
.article-hero-inner { position: relative; max-width: 800px; margin: 0 auto; z-index: 1; }

.article-hero .breadcrumb { justify-content: center; margin-bottom: 24px; }
.article-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 20px; margin-top: 80px; padding: 0 16px; }

.article-meta { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: .8125rem; color: var(--color-text-muted); }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta svg { width: 14px; height: 14px; color: var(--gold); }

.article-body { max-width: 800px; margin: 0 auto; padding: 0 var(--space-lg) 80px; }
.article-content { font-size: 1rem; line-height: 1.9; color: var(--color-text-secondary); }
.article-content h2 { font-size: 1.375rem; font-weight: 700; color: var(--color-text); margin: 40px 0 16px; padding-left: 14px; border-left: 3px solid var(--gold); }
.article-content h3 { font-size: 1.125rem; font-weight: 600; color: var(--color-text); margin: 28px 0 12px; }
.article-content p { margin-bottom: 16px; }
.article-content strong { color: var(--gold); font-weight: 600; }
.article-content ul { margin: 12px 0 20px; padding-left: 20px; }
.article-content ul li { margin-bottom: 8px; list-style: disc; }
.article-content ul li::marker { color: var(--gold); }

.article-cover { margin: 32px 0; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; background: rgba(108,92,231,.06); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.article-cover figcaption { font-size: .8125rem; color: var(--color-text-muted); text-align: center; padding: 10px 0 0; }

.article-content img { max-width: 100% !important; width: auto !important; height: auto !important; border-radius: 8px; display: block; margin: 24px auto; }

.highlight-box { background: rgba(108,92,231,.08); border: 1px solid rgba(108,92,231,.25); border-radius: 12px; padding: 24px 28px; margin: 28px 0; }
.highlight-box h3 { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: var(--gold); margin: 0 0 10px; }
.highlight-box h3 svg { width: 16px; height: 16px; }
.highlight-box p { margin-bottom: 8px; }
.highlight-note { font-size: .8125rem; color: var(--color-text-muted); font-style: italic; margin-top: 12px !important; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 24px 0; }
.spec-item { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 10px; padding: 16px 18px; text-align: center; }
.spec-label { font-size: .75rem; color: var(--color-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.spec-value { font-size: 1rem; font-weight: 700; color: var(--color-text); }

.tip-box { background: var(--color-bg-secondary); border: 1px solid var(--color-border); border-radius: 10px; padding: 16px 20px; font-size: .875rem; color: var(--color-text-muted); margin: 28px 0; }
.tip-box strong { color: var(--gold); }

.article-pager { display: flex !important; flex-direction: row !important; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 145px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--color-border); }
.article-pager a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 44px; background: var(--gold); color: #000; border: none; border-radius: 8px; font-size: .875rem; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.article-pager a:hover { opacity: .85; }
.article-pager a.disabled, .article-pager span.disabled { opacity: .35; pointer-events: none; }
.article-pager a.pager-back { background: var(--color-bg-elevated); border: 1px solid var(--color-border); color: var(--color-text-muted); }
.article-pager a.pager-back:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
.article-pager a.pager-back svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .article-hero { padding: calc(var(--header-height) + 40px) 16px 36px; }
  .article-body { padding: 0 16px 30px; }
  .article-meta { gap: 16px; }
  .article-pager { flex-direction: row !important; flex-wrap: wrap; gap: 12px; }
  .article-pager a { padding: 10px 20px; font-size: .8rem; }
  .highlight-box { padding: 16px 18px; }
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-item { padding: 12px 10px; }
}

/* === About Process Steps (migrated from about.html) === */
.about-process { padding: 60px var(--space-lg) 0; max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 25px; text-align: center; }
.process-header .overline { font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.process-header h2 { font-family: var(--font-heading); font-size: 1.75rem; margin-top: 8px; }
.process-header h2 span:not(.text-white) { color: var(--gold); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 32px 20px 32px 0; border-top: 2px solid var(--gold); cursor: pointer; transition: border-color .25s, background .25s; border-radius: 8px; }
.process-step:hover { border-top-color: var(--gold); background: rgba(108,92,231,.04); }
.process-step:hover .step-num { color: #fff; }
.process-step.active { border-top-color: var(--gold); }
.process-step .step-num { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.process-step h3 { font-size: .95rem; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: .78rem; color: var(--color-text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .about-process { padding: 92px 16px 0px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { padding: 16px 10px 16px 0; }
  .process-header h2 { font-size: 23px; }
  .process-header { margin-bottom: 6px; }
}

/* === About Two Column Info (migrated from about.html) === */
.about-info { padding: 20px var(--space-lg); max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-col h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid rgba(108,92,231,.20); text-align: center; }
.info-col ul { list-style: none; }
.info-col li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: .88rem; color: var(--color-text-muted); line-height: 1.6; border-bottom: 1px solid rgba(255,255,255,.04); }
.info-col li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
@media (max-width: 768px) { .info-col ul { max-width: 280px; margin: 0 auto; } }

@media (max-width: 768px) {
  .about-info { grid-template-columns: 1fr; padding: 0 16px 20px; gap: 20px; }
}

/* === About Philosophy Bento (migrated from about.html) === */
.about-philosophy { padding: 80px var(--space-lg); background: var(--color-bg-elevated); }
.phil-header { text-align: center; margin-bottom: 28px; margin-top: 35px; }
.phil-header .overline { font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.phil-header h2 { font-family: var(--font-heading); font-size: 1.75rem; margin-top: 8px; }
.bento { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.bento-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 14px; padding: 36px 32px; position: relative; overflow: hidden; transition: border-color .25s; }
.bento-card:hover { border-color: rgba(108,92,231,.30); }
.bento-card .bento-num { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: rgba(108,92,231,.10); position: absolute; top: 8px; right: 24px; line-height: 1; pointer-events: none; }
.bento-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; position: relative; }
.bento-card p { font-size: .85rem; color: var(--color-text-muted); line-height: 1.8; position: relative; }
.bento-main { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.bento-main h3 { font-size: 1.4rem; }
.bento-main p { font-size: .9rem; }
@media (max-width: 768px) {
  .about-philosophy { padding: 10px 16px; }
  .phil-header { margin-top: 0; margin-bottom: 16px; }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-main { grid-row: span 1; }
  .bento-card { padding: 5px 20px; }
}

/* === About Visit Card (migrated from about.html) === */
.about-visit { padding: 35px; }
.visit-card { max-width: 1100px; margin: 0 auto; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 16px; padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.visit-card h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 12px; }
.visit-card p { font-size: .9rem; color: var(--color-text-muted); line-height: 1.8; }
.visit-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: var(--gold); color: #000; border-radius: 8px; font-size: 1rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: opacity .2s; }
.visit-btn:hover { opacity: .85; }
.visit-btn svg { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .about-visit { padding: 20px 24px; }
  .visit-card { grid-template-columns: 1fr; text-align: center; padding: 25px 24px; gap: 24px; }
  .visit-btn { justify-content: center; }
}

/* === Jobs Cards (migrated from jobs.html) === */
.jobs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.job-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 12px; padding: 28px 24px; transition: border-color .25s, transform .25s; }
.job-card:hover { border-color: rgba(108,92,231,.35); transform: translateY(-3px); }
.job-card-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(108,92,231,.12); border-radius: 8px; flex-shrink: 0; }
.job-card-icon svg { width: 18px; height: 18px; color: var(--gold); }
.job-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.job-card-head h3 { font-size: 1rem; font-weight: 600; }
.job-card p { font-size: .8rem; color: var(--color-text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .job-card { padding: 5px 24px; }
}
@media (max-width: 480px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .section:first-of-type { padding-top: 60px !important; }
  /* 联系我们页 */
  .section.contact-section-main { padding-top: 10px !important; }
  /* 首页 hero */
  .hero-container { margin-top: 15px; }
  /* 资讯中心页 */
  .section-pt0:first-of-type { padding-top: 25px !important; }
}

/* === Benefits (migrated from jobs.html) === */
.jobs-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-item { padding: 36px 32px; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 12px; transition: border-color .25s; }
.benefit-item:hover { border-color: rgba(108,92,231,.30); }
.benefit-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.benefit-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(108,92,231,.12); border-radius: 50%; flex-shrink: 0; }
.benefit-icon svg { width: 20px; height: 20px; color: var(--gold); }
.benefit-head h3 { font-size: .95rem; font-weight: 600; }
.benefit-item p { font-size: .8rem; color: var(--color-text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .jobs-benefits { grid-template-columns: 1fr; }
  .benefit-item { padding: 5px 25px; }
}

/* === Jobs QR Section (migrated from jobs.html) === */
.jobs-top-section { padding-top: 0px; }
.jobs-qr-section { display: flex; align-items: center; justify-content: center; gap: 40px; }
.jobs-qr-img { text-align: center; }
.jobs-qr-img img { display: block; margin: 0 auto; width: 140px; height: 140px; border-radius: 10px; }
.jobs-qr-img p { margin-top: 10px; font-size: .78rem; color: var(--color-text-muted); }
.jobs-qr-text h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.jobs-qr-text p { font-size: .85rem; color: var(--color-text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .jobs-qr-section { gap: 24px; }
}

@media (max-width: 480px) {
  .jobs-qr-section { flex-direction: column; text-align: center; padding: 25px 20px; gap: 24px; }
  .jobs-qr-img img { width: 160px; height: 160px; }
}

/* === Contact Page inline styles consolidated === */
.qr-contact-footer { margin-top: 12px; font-size: .82rem; color: var(--color-text-muted); }
.qr-contact-wrap { display: flex; justify-content: center; }
.qr-subtitle { margin-top: 12px; font-size: .78rem; color: var(--color-text-muted); }
.qr-contact-card { text-align: center; }
.qr-contact-card h2 { font-family: var(--font-heading); font-size: var(--text-2xl); margin-bottom: 16px; color: #6C5CE7; }
.qr-contact-card p { color: var(--color-text-muted); font-size: .875rem; margin-bottom: 24px; line-height: 1.7; }
.section-header-compact { text-align: center; margin-bottom: 18px; }
.section-title-compact { margin-bottom: 18px; }

/* === Booking page inline styles consolidated === */
.form-required { color: var(--color-accent); }
.booking-h3 { font-family: var(--font-heading); font-size: var(--text-xl); margin-bottom: 20px; }
.booking-h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 8px; color: var(--color-accent); }
.booking-text-sm { font-size: var(--text-sm); }
.booking-policy { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 2; }
.booking-cta-box { background: var(--color-accent-glow); padding: 20px; border-radius: 8px; text-align: center; }
.booking-cta-box p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: 8px; }
.booking-cta-tel { font-size: var(--text-xl); font-weight: 700; color: var(--color-accent); }

/* === Section header compact === */
.section-header-mb35 { text-align: center; margin-bottom: 35px; }

/* === Sitemap === */
.sitemap-tree { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; justify-content: center; }
.sitemap-col { text-align: center; }
.sitemap-col h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border); text-align: center; }
.sitemap-col a { display: block; font-size: .85rem; color: var(--color-text-muted); padding: 6px 0; transition: color .2s; }
.sitemap-col a:hover { color: var(--gold); }

/* === Contact page specific === */
.contact-h2 { font-family: var(--font-heading); font-size: var(--text-2xl); margin-bottom: 24px; color: #6C5CE7; }
.contact-addr-svg { width: 20px; height: 20px; color: var(--gold); }
.room-guide-list { display: flex; flex-direction: column; gap: 14px; }
.room-guide-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--color-text-muted); line-height: 1.7; }
.room-guide-num { color: var(--gold); flex-shrink: 0; font-weight: 700; }
.room-guide-footer { margin-top: 20px; font-size: .82rem; color: var(--color-text-muted); text-align: center; }
.text-gold { color: var(--gold); }
.qr-contact-card { text-align: center; }
.qr-contact-card\ h2, .qr-card-h2 { font-family: var(--font-heading); font-size: var(--text-2xl); margin-bottom: 16px; color: #6C5CE7; }
.qr-contact-card\ p, .qr-card-p { color: var(--color-text-muted); font-size: .875rem; margin-bottom: 24px; line-height: 1.7; }

/* === Quick Service Cards === */
.quick-service-card { padding: 36px 32px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 12px; }
.quick-service-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.quick-service-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(108,92,231,.12); border-radius: 10px; flex-shrink: 0; }
.quick-service-icon-svg { width: 20px; height: 20px; color: var(--gold); }
.quick-service-h3 { font-size: 1rem; font-weight: 600; }
.quick-service-p { font-size: .82rem; color: var(--color-text-muted); line-height: 1.7; }

/* === Booking page specific === */
.form-required { color: var(--color-accent); }
.booking-h3 { font-family: var(--font-heading); font-size: var(--text-xl); margin-bottom: 20px; }
.booking-h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 8px; color: var(--color-accent); }
.booking-section { margin-bottom: 24px; }

/* === News sidebar contact === */
.news-sidebar-contact { text-align: center; }
.sidebar-contact-label { font-size: .82rem; color: var(--color-text-muted); margin-bottom: 12px; }
.sidebar-contact-tel { font-size: 1.2rem; font-weight: 700; color: var(--gold); border: none; padding: 0; }
.sidebar-contact-hours { font-size: .72rem; color: var(--color-text-dim); margin-top: 8px; }

/* === Jobs contact phone === */
.jobs-contact-phone { margin-top: 12px; font-size: .82rem; color: var(--color-text-muted); }

/* === Contact section elevated bg section === */
.section-bg-elevated-pb40 { background: var(--color-bg-elevated); padding: 0 0 40px 0; }

/* === Booking form submit button === */
.btn-submit-wide { width: 100%; padding: 16px; }
