  :root {
    --navy: #0E2E5C;
    --navy-deep: #08214A;
    --navy-light: #1B4185;
    --yellow: #FFCB05;
    --yellow-soft: #FFE066;
    --sky: #E8F1FB;
    --sky-soft: #F4F9FE;
    --white: #FFFFFF;
    --text: #1A2238;
    --muted: #5B6B86;
    --border: #DCE6F2;
    --success: #1E8E5A;
    --wechat: #07C160;
    --shadow-sm: 0 4px 14px rgba(14, 46, 92, 0.08);
    --shadow-md: 0 12px 40px rgba(14, 46, 92, 0.12);
    --shadow-lg: 0 24px 60px rgba(14, 46, 92, 0.18);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  body.zh { font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Inter', sans-serif; }
  img, svg { max-width: 100%; height: auto; display: block; }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--navy-deep);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 100;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .topbar-info { display: flex; align-items: center; gap: 8px; opacity: 0.9; font-size: 12px; }
  .topbar-info svg { width: 13px; height: 13px; flex-shrink: 0; }
  .topbar-right { display: flex; align-items: center; gap: 12px; }
  .wechat-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--wechat);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
  }
  .wechat-top:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4); }
  .wechat-top svg { width: 14px; height: 14px; fill: currentColor; }
  .lang-switcher { display: flex; gap: 4px; }
  .lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 4px 11px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.25s;
    font-family: inherit;
  }
  .lang-btn:hover { background: rgba(255,255,255,0.1); }
  .lang-btn.active { background: var(--yellow); color: var(--navy-deep); border-color: var(--yellow); }

  /* ============ NAV ============ */
  nav {
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
  .logo-svg { width: 50px; height: 50px; flex-shrink: 0; }
  .logo-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
  .logo-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.5px;
    font-style: italic;
    white-space: nowrap;
  }
  .logo-name .yellow-letter { color: var(--yellow); }
  .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .nav-cta {
    background: var(--yellow);
    color: var(--navy-deep);
    padding: 11px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(255, 203, 5, 0.4);
    white-space: nowrap;
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 203, 5, 0.6);
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 88vh;
    background: linear-gradient(135deg, #E8F1FB 0%, #F4F9FE 50%, #FFFFFF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0 70px;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,203,5,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,46,92,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
  }
  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    border: 1px solid var(--border);
  }
  .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }
  .pulse-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
  }
  .hero h1 {
    font-size: clamp(32px, 5.2vw, 60px);
    font-weight: 900;
    color: var(--navy-deep);
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
  }
  .hero h1 .highlight {
    color: var(--navy);
    position: relative;
    display: inline-block;
  }
  .hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 14px;
    background: var(--yellow);
    z-index: -1;
    opacity: 0.6;
  }
  .hero-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
  }
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
  }
  .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 13px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex: 1;
    min-width: 180px;
  }
  .meta-icon {
    width: 40px;
    height: 40px;
    background: var(--sky);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
  }
  .meta-icon svg { width: 20px; height: 20px; }
  .meta-text { display: flex; flex-direction: column; min-width: 0; }
  .meta-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
  }
  .meta-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-deep);
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .btn-primary:hover {
    background: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  .btn-primary svg { width: 17px; height: 17px; transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 16px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--navy);
    cursor: pointer;
    font-family: inherit;
    text-align: center;
  }
  .btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
  }

  /* ============ HERO LOGO HERO ============ */
  .hero-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #08214A 0%, #0E2E5C 50%, #1B4185 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,203,5,0.18) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255,203,5,0.12) 0%, transparent 50%);
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,203,5,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,203,5,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-logo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
  }
  .hero-logo-svg {
    width: 90%;
    max-width: 380px;
    margin: 0 auto 30px;
  }
  .hero-claim {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero-claim .yellow-text { color: var(--yellow); }
  .hero-claim-sub {
    font-size: clamp(13px, 1.6vw, 16px);
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    max-width: 380px;
    margin: 0 auto;
    font-weight: 500;
  }
  
  .hero-claim-sub-video {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 20px;
    letter-spacing: -0.5px;
  }

  .floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
  }
  .fc-1 {
    top: 28px;
    left: -15px;
    animation: floatCard 6s ease-in-out infinite;
  }
  .fc-2 {
    bottom: 50px;
    right: -15px;
    animation: floatCard 6s ease-in-out infinite 3s;
  }
  @keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--sky);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fc-icon.yellow { background: var(--yellow); }
  .fc-icon svg { width: 20px; height: 20px; }
  .fc-text { display: flex; flex-direction: column; line-height: 1.2; }
  .fc-title { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .fc-value { font-size: 15px; font-weight: 800; color: var(--navy-deep); }

  /* ============ SECTION COMMON ============ */
  section { padding: 90px 0; }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
  }
  .section-eyebrow {
    display: inline-block;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--sky);
    border-radius: 50px;
  }
  h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--navy-deep);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ============ STATS ============ */
  
  .end-count {
    display: block !important;
  }
  .end-count .stat-num {
    margin-bottom: 0px !important;
  }
  .stat-num #days, .stat-num #hours, .stat-num #minutes, .stat-num #seconds {
    font-size: 72px !important;
  }
  
  .stats {
    background: var(--navy-deep);
    color: var(--white);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
  }
  .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-soft), var(--yellow));
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .stat-num {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.4;
  }

  /* ============ EUROPE MAP SECTION ============ */
  .gateway {
    background: var(--sky-soft);
    position: relative;
    overflow: hidden;
  }
  .gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
  }
  .gateway-text h2 { text-align: left; }
  .gateway-text .section-eyebrow { display: inline-block; }
  .gateway-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gf-item {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .gf-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
  }
  .gf-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.4;
  }

  .map-frame {
    background: var(--white);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow), var(--navy));
  }
  .map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .map-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-deep);
  }
  .map-tag {
    background: var(--yellow);
    color: var(--navy-deep);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }
  .europe-map {
    width: 100%;
    height: auto;
    background: #BDDCF0;
    border-radius: 16px;
    overflow: hidden;
  }
  .map-footer {
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 12px;
    font-size: 12px;
  }
  .legend-item { display: flex; align-items: center; gap: 6px; color: var(--muted); }
  .legend-dot { width: 10px; height: 10px; border-radius: 50%; }

  /* ============ EVENT INFO BOXES ============ */
  .event-info { background: var(--white); }
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .info-card {
    background: var(--white);
    padding: 32px 26px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
  .info-card:hover::before { transform: scaleX(1); }
  .info-icon-wrap {
    width: 58px;
    height: 58px;
    background: var(--sky);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy);
  }
  .info-icon-wrap svg { width: 28px; height: 28px; }
  .info-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
  }
  .info-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
  }
  .info-detail {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
  }

  /* ============ STAND CTA ============ */
  .stand-cta {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .stand-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,203,5,0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255,203,5,0.1) 0%, transparent 50%);
  }
  .stand-cta-inner { position: relative; z-index: 2; }
  .stand-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy-deep);
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .stand-cta h2 { color: var(--white); }
  .stand-num {
    font-size: clamp(48px, 9vw, 110px);
    font-weight: 900;
    line-height: 1;
    margin: 26px 0;
    letter-spacing: -2px;
    background: linear-gradient(180deg, var(--white) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stand-detail {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  .stand-cta .btn-primary {
    background: var(--yellow);
    color: var(--navy-deep);
  }
  .stand-cta .btn-primary:hover {
    background: var(--yellow-soft);
  }

  /* ============ WHY MEET US ============ */
  .info-card UL {
  margin-left: 15px;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all 0.3s;
  }
  .why-card:hover {
    border-color: var(--navy);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
  }
  .why-icon {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    color: var(--navy-deep);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .why-icon svg { width: 26px; height: 26px; }
  .why-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }
  .why-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ============ BOOKING FORM ============ */
  .booking {
    background: linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%);
    position: relative;
  }
  .booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
  }
  .booking-info h2 { text-align: left; }
  .booking-info .section-eyebrow { display: inline-block; }
  .booking-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bp-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
  }
  .bp-check {
    width: 24px;
    height: 24px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy-deep);
    margin-top: 2px;
  }
  .bp-check svg { width: 13px; height: 13px; }

  /* booking method tabs */
  .booking-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
    background: var(--sky);
    padding: 5px;
    border-radius: 12px;
  }
  .booking-method {
    flex: 1;
    padding: 11px 12px;
    border-radius: 9px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .booking-method svg { width: 16px; height: 16px; }
  .booking-method.active {
    background: var(--white);
    color: var(--navy-deep);
    box-shadow: var(--shadow-sm);
  }

  .form-card {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--navy) 100%);
  }
  .form-card h3 {
    font-size: 23px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  .form-card .form-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 22px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .form-group { margin-bottom: 12px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }
  .form-group label .req { color: #D9534F; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.25s;
    background: var(--white);
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230E2E5C' d='M6 8L0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(14, 46, 92, 0.08);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }
  .form-checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
  .form-checkbox a { color: var(--navy); text-decoration: underline; }
  .form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 13px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .form-submit svg { width: 17px; height: 17px; transition: transform 0.3s; }
  .form-submit:hover svg { transform: translateX(4px); }

  /* alternative booking methods panels */
  .booking-panel { display: none; }
  .booking-panel.active { display: block; }
  .qr-panel { text-align: center; padding: 10px 0; }
  .qr-card {
    background: var(--sky-soft);
    border-radius: 18px;
    padding: 28px 20px;
    margin-bottom: 18px;
    border: 1.5px dashed var(--border);
  }
  .qr-card h4 {
    font-size: 18px;
    color: var(--navy-deep);
    margin-bottom: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .qr-card h4 svg { width: 24px; height: 24px; }
  .qr-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 14px;
    background: var(--white);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
  }
  .qr-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
  }
  .qr-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .qr-cta {
    flex: 1;
    min-width: 130px;
    padding: 12px 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    text-align: center;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .qr-cta:hover { border-color: var(--navy); background: var(--sky); }
  .qr-cta.wechat-c { background: var(--wechat); color: var(--white); border-color: var(--wechat); }
  .qr-cta.wechat-c:hover { background: #06AC56; }
  .qr-cta svg { width: 14px; height: 14px; }

  .form-success {
    text-align: center;
    padding: 30px 16px;
    display: none;
  }
  .form-success.show { display: block; }
  .success-icon {
    width: 68px;
    height: 68px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
  }
  .success-icon svg { width: 32px; height: 32px; }
  .form-success h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 8px;
  }
  .form-success p { color: var(--muted); font-size: 14px; }

  /* ============ TRUST ============ */
  .trust {
    background: var(--navy-deep);
    color: var(--white);
    text-align: center;
  }
  .trust h2 { color: var(--white); }
  .trust .section-eyebrow { background: rgba(255, 203, 5, 0.15); color: var(--yellow); }
  .trust .section-sub { color: rgba(255,255,255,0.8); }
  .trust-quote {
    max-width: 800px;
    margin: 44px auto 0;
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    position: relative;
    padding: 0 30px;
  }
  .trust-quote::before, .trust-quote::after {
    position: absolute;
    font-size: 48px;
    color: var(--yellow);
    opacity: 0.5;
    line-height: 1;
    font-style: normal;
    font-family: Georgia, serif;
  }
  .trust-quote::before { content: '\201C'; top: -12px; left: 0; }
  .trust-quote::after { content: '\201D'; bottom: -36px; right: 0; }
  .trust-author {
    margin-top: 28px;
    font-size: 13px;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ============ MARKETPLACE LINK ============ */
  .marketplace {
    background: var(--white);
    padding: 60px 0;
  }
  .marketplace-card {
    background: linear-gradient(135deg, #FFF9DB 0%, #FFFFFF 100%);
    border: 2px solid var(--yellow);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
  }
  .mp-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    color: var(--yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mp-icon svg { width: 36px; height: 36px; }
  .mp-content { flex: 1; min-width: 240px; }
  .mp-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }
  .mp-content p { color: var(--muted); font-size: 14px; line-height: 1.5; }
  .mp-cta {
    background: var(--navy);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .mp-cta:hover { background: var(--navy-deep); transform: translateY(-2px); }
  .mp-cta svg { width: 14px; height: 14px; }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-soft) 100%);
    text-align: center;
    color: var(--navy-deep);
    padding: 70px 0;
  }
  .final-cta h2 { color: var(--navy-deep); margin-bottom: 16px; }
  .final-cta p {
    font-size: 17px;
    color: var(--navy);
    max-width: 640px;
    margin: 0 auto 32px;
    opacity: 0.85;
  }
  .final-cta .btn-primary { background: var(--navy-deep); color: var(--white); }
  .final-cta .btn-primary:hover { background: var(--navy); }

  /* ============ FOOTER ============ */
  footer {
    background: #061838;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 26px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }
  .footer-brand .logo-name { color: var(--white); }
  .footer-brand p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
  }
  .footer-col h5 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .footer-col a, .footer-col p {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 9px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--yellow); }
  .footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ============ FLOATING WECHAT WIDGET ============ */
  .wechat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
  }
  .wechat-fab-btn {
    width: 60px;
    height: 60px;
    background: var(--wechat);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(7, 193, 96, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    position: relative;
  }
  .wechat-fab-btn:hover { transform: scale(1.08); }
  .wechat-fab-btn svg { width: 30px; height: 30px; fill: currentColor; }
  .wechat-fab-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--wechat);
    opacity: 0.4;
    animation: pulseWeChat 2s infinite;
    z-index: -1;
  }
  @keyframes pulseWeChat {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  .wechat-fab-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-deep);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
    transition: all 0.3s;
  }
  .wechat-fab:hover .wechat-fab-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* ============ WECHAT OVERLAY ============ */
  .wechat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 33, 74, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
  }
  .wechat-overlay.show { display: flex; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .wechat-modal {
    background: var(--white);
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .wechat-header {
    background: linear-gradient(135deg, var(--wechat) 0%, #06AC56 100%);
    color: var(--white);
    padding: 22px 24px;
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }
  .wechat-header svg { width: 30px; height: 30px; fill: currentColor; }
  .wechat-header-text h3 { font-size: 18px; font-weight: 800; margin-bottom: 2px; }
  .wechat-header-text p { font-size: 12px; opacity: 0.9; }
  .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.3); }
  .wechat-body { padding: 28px 24px; text-align: center; }
  .wechat-qr {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
  }
  .wechat-body h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 8px;
  }
  .wechat-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .wechat-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wechat-action {
    background: var(--sky-soft);
    border: 1px solid var(--border);
    padding: 13px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--navy-deep);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
  }
  .wechat-action:hover { background: var(--sky); border-color: var(--navy); }
  .wechat-action.primary { background: var(--wechat); color: var(--white); border-color: var(--wechat); }
  .wechat-action.primary:hover { background: #06AC56; }
  .wechat-action svg { width: 14px; height: 14px; }

  /* ============ LANG VISIBILITY ============ */
  [data-lang-en] { display: block; }
  [data-lang-zh] { display: none; }
  span[data-lang-en], strong[data-lang-en], a[data-lang-en], button[data-lang-en], em[data-lang-en], li[data-lang-en], option[data-lang-en], h1[data-lang-en], h2[data-lang-en], h3[data-lang-en], h4[data-lang-en], h5[data-lang-en], p[data-lang-en], div[data-lang-en], small[data-lang-en], label[data-lang-en] { display: inline; }

  body.zh [data-lang-en] { display: none; }
  body.zh [data-lang-zh] { display: block; }
  body.zh span[data-lang-zh], body.zh strong[data-lang-zh], body.zh a[data-lang-zh], body.zh button[data-lang-zh], body.zh em[data-lang-zh], body.zh li[data-lang-zh], body.zh option[data-lang-zh], body.zh small[data-lang-zh], body.zh label[data-lang-zh] { display: inline; }
  body.zh h1[data-lang-zh], body.zh h2[data-lang-zh], body.zh h3[data-lang-zh], body.zh h4[data-lang-zh], body.zh h5[data-lang-zh], body.zh p[data-lang-zh], body.zh div[data-lang-zh] { display: block; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    .hero { min-height: auto; padding: 30px 0 50px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 1/1; padding: 32px 24px; }
    .info-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .why-grid { grid-template-columns: 1fr; }
    .booking-wrap, .gateway-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
    .floating-card { padding: 10px 14px; }
    .floating-card .fc-icon { width: 34px; height: 34px; }
    .floating-card .fc-value { font-size: 13px; }
    .fc-1 { left: -14px; }
    .fc-2 { right: -14px; }
  }

  @media (max-width: 640px) {
    section { padding: 50px 0; }
    .topbar { padding: 8px 0; }
    .topbar-inner { padding: 0 16px; gap: 8px; }
    .topbar-info { width: 100%; justify-content: center; font-size: 11px; }
    .topbar-right { width: 100%; justify-content: space-between; }
    .container, .nav-inner, .hero-inner { padding-left: 16px; padding-right: 16px; }
    .nav-inner { padding: 0 16px; }
    .nav-cta { padding: 9px 14px; font-size: 12px; }
    .logo-svg { width: 42px; height: 42px; }
    .logo-name { font-size: 18px; }
    .hero h1 { font-size: 32px; line-height: 1.1; }
    .hero-subtitle { font-size: 15px; }
    .hero-meta { gap: 10px; }
    .meta-item { padding: 11px 14px; min-width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { width: 100%; }
    .form-card { padding: 24px 18px; border-radius: 18px; }
    .form-card h3 { font-size: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .why-card { padding: 20px; flex-direction: column; gap: 14px; }
    .info-card { padding: 26px 22px; }
    .stand-num { font-size: 42px; letter-spacing: -1px; }
    .gateway-features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gf-item { padding: 16px 14px; }
    .gf-num { font-size: 22px; }
    .gf-label { font-size: 12px; }
    .map-frame { padding: 16px; border-radius: 20px; }
    .marketplace-card { padding: 24px; flex-direction: column; text-align: center; }
    .mp-content { min-width: 100%; }
    .mp-cta { width: 100%; justify-content: center; }
    .booking-methods { flex-wrap: wrap; }
    .booking-method { font-size: 12px; padding: 10px 8px; }
    .wechat-fab { bottom: 18px; right: 18px; }
    .wechat-fab-btn { width: 54px; height: 54px; }
    .wechat-fab-btn svg { width: 26px; height: 26px; }
    .wechat-fab-label { display: none; }
    .trust-quote { padding: 0 14px; }
    .hero-claim { font-size: 22px; }
    .hero-claim-sub { font-size: 13px; }
    .hero-logo-svg { max-width: 280px; }
  }

  @media (max-width: 380px) {
    .topbar-info { font-size: 10px; gap: 5px; }
    .wechat-top { padding: 4px 9px; font-size: 11px; }
    .lang-btn { padding: 3px 9px; font-size: 11px; }
    .hero h1 { font-size: 28px; }
  }