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

:root {
  --navy:   #0d1b2a;
  --navy2:  #152538;
  --gold:   #c9a84c;
  --gold2:  #e8c97a;
  --cream:  #f8f5ef;
  --white:  #ffffff;
  --gray:   #6b7280;
  --light:  #f1ede6;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --radius: 12px;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--ff-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { color: #3d4f63; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

section { padding: 96px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--ff-body);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── Section helpers ── */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold2); }
.section-title { color: var(--white); margin-bottom: 16px; }
.section-sub { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 56px; text-align: center; }
.section-dark { background: var(--navy); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}
.logo span { color: var(--gold); }

nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}
nav ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 5px;
  transition: color var(--transition);
}
nav ul li a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
}
.btn-nav:hover { background: var(--gold2) !important; color: var(--navy) !important; }

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.lang-sep { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.lang-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 4px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.lang-btn:hover  { color: var(--white); border-color: rgba(255,255,255,0.5); }
.lang-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.1); }
.mobile-lang { padding: 16px 0 4px; }
.mobile-lang .lang-sep { color: rgba(255,255,255,0.3); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy2);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1a3352 55%, #0f2640 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
#hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { top: 6px; opacity: 1; }
  60% { top: 20px; opacity: 0; }
}

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.credential-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(13,27,42,0.25);
}
.badge-icon { font-size: 1.6rem; }
.credential-badge div { display: flex; flex-direction: column; }
.credential-badge strong { font-size: 0.9rem; color: var(--gold); }
.credential-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.about-text { }
.about-text #about { padding: 0; }
.about-text p { margin-bottom: 20px; }
.about-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.hi-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ── FIRM BANNER ── */
#firm-banner {
  background: var(--cream);
  padding: 72px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.firm-link { color: var(--gold); font-weight: 600; text-decoration: none; }
.firm-link:hover { text-decoration: underline; }
.firm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.firm-stat {
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.firm-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.firm-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.firm-note {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .firm-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .firm-stats { grid-template-columns: 1fr; }
}

/* ── SERVICES ── */
#services { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.svc-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.65; }

/* ── CANTON FAIR ── */
#canton-fair { background: var(--white); }
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cf-text p { margin-bottom: 20px; }
.cf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.cf-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--navy);
}
.cf-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cf-visual { display: flex; flex-direction: column; gap: 20px; }
.cf-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,27,42,0.18);
}
.cf-card-header {
  background: var(--navy2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cf-dot.red    { background: #ff5f57; }
.cf-dot.amber  { background: #ffbd2e; }
.cf-dot.green  { background: #28c840; }
.cf-card-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-left: 6px; font-family: monospace; }
.cf-schedule {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cf-schedule li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cf-schedule li:last-child { border-bottom: none; }
.phase-tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cf-schedule li div { display: flex; flex-direction: column; }
.cf-schedule li strong { color: var(--white); font-size: 0.9rem; }
.cf-schedule li span { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 2px; }
.cf-card-note {
  margin: 0;
  padding: 14px 20px;
  background: rgba(201,168,76,0.08);
  font-size: 0.8rem;
  color: var(--gold);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.cf-badge-wrap { }
.cf-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cf-badge-icon { font-size: 1.4rem; }
.cf-badge { }
.cf-badge strong { display: block; font-size: 0.95rem; color: var(--navy); }
.cf-badge span { font-size: 0.8rem; color: var(--gray); }

/* ── WHY ME ── */
#why { text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.07); transform: translateY(-4px); }
.why-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  color: rgba(201,168,76,0.25);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}
.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #3d4f63;
  line-height: 1.75;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 16px;
}
[dir="rtl"] .faq-item summary { flex-direction: row-reverse; }
[dir="rtl"] .faq-item p { text-align: right; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info p { margin-bottom: 20px; }
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #3d4f63;
}
.cd-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-channels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.channel-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.channel-btn:hover { background: var(--navy); color: var(--white); }
.channel-btn.wechat { border-color: #07c160; color: #07c160; }
.channel-btn.wechat:hover { background: #07c160; color: var(--white); }
.channel-btn.whatsapp { border-color: #25d366; color: #25d366; }
.channel-btn.whatsapp:hover { background: #25d366; color: var(--white); }
/* WeChat copy button */
.wechat-copy {
  position: relative;
  cursor: pointer;
  user-select: none;
  gap: 10px;
}
.wechat-copy:hover { background: #07c160; color: var(--white); border-color: #07c160; }
.wechat-info { display: flex; flex-direction: column; line-height: 1.3; }
.wechat-label { font-size: 0.7rem; opacity: 0.75; font-weight: 400; }
.wechat-id { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; }
.copy-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(7,193,96,0.12);
  border: 1px solid #07c160;
  color: #07c160;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: auto;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.wechat-copy:hover .copy-pill { background: rgba(255,255,255,0.2); border-color: var(--white); color: var(--white); }
.copy-toast {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(201,168,76,0.3);
}
.copy-toast::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1dae6;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; 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 d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { font-size: 0.78rem; color: var(--gray); text-align: center; margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #166534;
  text-align: center;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.3); max-width: 600px; line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  nav { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .cf-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .credential-badge { right: 0; bottom: -16px; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 560px) {
  .services-grid,
  .why-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* ══════════════════════════════════════════════
   RTL  (Arabic)
   ══════════════════════════════════════════════ */
[dir="rtl"] body { font-family: 'Segoe UI', Tahoma, 'Arial', var(--ff-body); }

/* Nav */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] nav ul     { flex-direction: row-reverse; }
[dir="rtl"] .mobile-menu ul li a { text-align: right; }

/* Hero */
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-ctas    { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .hero-stats   { flex-direction: row-reverse; }
[dir="rtl"] .scroll-hint  { left: auto; right: 50%; transform: translateX(50%); }

/* About — flip column order */
[dir="rtl"] .about-grid   { direction: rtl; }
[dir="rtl"] .about-text   { text-align: right; }
[dir="rtl"] .about-highlights li { flex-direction: row-reverse; }
[dir="rtl"] .credential-badge {
  right: auto;
  left: -20px;
}
@media (max-width: 768px) {
  [dir="rtl"] .credential-badge { left: 0; right: auto; }
}

/* Firm banner */
[dir="rtl"] .firm-stat { text-align: right; align-items: flex-end; }
[dir="rtl"] #firm-banner p { text-align: right !important; }
[dir="rtl"] #firm-banner .section-eyebrow,
[dir="rtl"] #firm-banner h2 { text-align: right !important; }

/* Services */
[dir="rtl"] .service-card { text-align: right; }

/* Canton Fair */
[dir="rtl"] .cf-text   { text-align: right; }
[dir="rtl"] .cf-list li { flex-direction: row-reverse; }
[dir="rtl"] .cf-schedule li { flex-direction: row-reverse; }
[dir="rtl"] .cf-schedule li div { text-align: right; }
[dir="rtl"] .cf-badge  { flex-direction: row-reverse; }
[dir="rtl"] .cf-badge div { text-align: right; }
[dir="rtl"] .cf-card-header { flex-direction: row-reverse; }
[dir="rtl"] .cf-card-title  { margin-right: 6px; margin-left: 0; }

/* Why Me */
[dir="rtl"] .why-card { text-align: right; }
[dir="rtl"] .why-num  { text-align: right; }

/* Contact */
[dir="rtl"] .contact-info   { text-align: right; }
[dir="rtl"] .contact-details li { flex-direction: row-reverse; }
[dir="rtl"] .contact-channels   { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .channel-btn        { flex-direction: row-reverse; }
[dir="rtl"] .wechat-info        { text-align: right; }
[dir="rtl"] .copy-pill          { margin-right: auto; margin-left: 0; }
[dir="rtl"] .wechat-copy        { flex-direction: row-reverse; }

/* Form */
[dir="rtl"] .form-group label    { text-align: right; }
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea { text-align: right; direction: rtl; }
[dir="rtl"] .form-group select {
  text-align: right;
  direction: rtl;
  background-position: left 14px center;
  padding-left: 36px;
  padding-right: 14px;
}
[dir="rtl"] .form-note { text-align: right; }

/* Section eyebrows / headings */
[dir="rtl"] .section-eyebrow { text-align: right; }
[dir="rtl"] h2               { text-align: right; }
[dir="rtl"] .section-sub     { text-align: right; }
[dir="rtl"] #services        { text-align: right; }
[dir="rtl"] #why             { text-align: right; }
[dir="rtl"] #services .section-eyebrow,
[dir="rtl"] #services .section-title,
[dir="rtl"] #services .section-sub,
[dir="rtl"] #why .section-eyebrow,
[dir="rtl"] #why .section-title { text-align: center; }

/* Footer */
[dir="rtl"] .footer-inner    { text-align: right; }
[dir="rtl"] .footer-links    { flex-direction: row-reverse; }
[dir="rtl"] .footer-brand p  { text-align: right; }
[dir="rtl"] .footer-legal    { text-align: right; }
