:root {
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --burgundy: #6b1d2a;
  --burgundy-dark: #4a1520;
  --burgundy-light: #8a2536;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-dark: #a8893f;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --light: #f4f3f0;
  --light-2: #eeedea;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 0px;
  --transition: 0.3s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-cn: 'Noto Sans SC', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text); line-height: 1.7; font-size: 16px; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

.section { padding: 7rem 0; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.2;
}
.section-title strong { font-weight: 700; }
.section-header { margin-bottom: 3.5rem; }
.section-header .section-title { margin-bottom: 0.75rem; }
.section-header p { max-width: 560px; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.divider { width: 40px; height: 1px; background: var(--burgundy); margin: 1.25rem 0; }
.section-header .divider { margin: 1.25rem 0; }
.cn-text { font-family: var(--font-cn); font-size: 0.75em; color: var(--gray-500); display: block; margin-top: 0.25rem; }
.cn-paragraph { font-family: var(--font-cn); color: var(--gray-500); font-size: 0.9rem; margin-top: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
  text-decoration: none;
  line-height: 1.4;
  border: none;
  background: none;
}
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-dark); }
.btn-outline { border: 1px solid var(--burgundy); color: var(--burgundy); background: transparent; }
.btn-outline:hover { background: var(--burgundy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.35); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #128c7e; }
.btn-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid transparent;
  padding: 0;
  transition: border-color var(--transition);
}
.btn-link:hover { border-bottom-color: var(--burgundy); }

.top-bar {
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.72rem;
  padding: 0.35rem 0;
  letter-spacing: 0.03em;
}
.top-bar-inner { display: flex; justify-content: flex-end; align-items: center; gap: 1.75rem; flex-wrap: nowrap; white-space: nowrap; }
.top-bar-item { display: flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.7); }
.top-bar-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.top-bar-item a:hover { color: var(--gold); }
.top-bar-item svg { flex-shrink: 0; opacity: 0.6; }

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 36px; width: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.main-nav { display: flex; align-items: center; gap: 0; }
.nav-list { display: flex; align-items: center; }
.nav-link {
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--burgundy); }

.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 100;
  border-top: 2px solid var(--burgundy);
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--burgundy); padding-left: 2rem; }

.btn-nav-contact {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 0.5rem 1.5rem !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1rem;
  transition: all var(--transition);
}
.btn-nav-contact:hover { background: var(--burgundy-dark); }

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,29,42,0.40) 0%, rgba(26,26,46,0.25) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2.5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title-accent {
  display: block;
  font-weight: 700;
  font-size: 1.05em;
  color: var(--gold-light);
}
.hero-title-cn {
  font-family: var(--font-cn);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-video {
  position: relative;
  overflow: hidden;
}
.hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.trust-bar {
  background: var(--off-white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust-item { padding: 1rem 0; }
.trust-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.1;
}
.trust-label { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.5rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.about-images { position: relative; }
.about-img-main { overflow: hidden; }
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 180px;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 120px; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 1.25rem 1rem;
  text-align: center;
}
.badge-number { display: block; font-family: var(--font-serif); font-size: 2.25rem; font-weight: 400; line-height: 1; }
.badge-text { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-top: 0.25rem; display: block; }
.about-content p { margin-bottom: 1rem; color: var(--text-light); font-size: 0.95rem; line-height: 1.85; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin: 1.5rem 0 2.5rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.3rem 0;
}
.feature-item svg { color: var(--burgundy); flex-shrink: 0; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-200); }
.service-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--burgundy); color: var(--white); }
.service-card:hover .service-icon svg { color: var(--gold-light); }
.service-card:hover .service-link { color: var(--gold-light); }
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-card.featured { grid-column: span 2; background: var(--burgundy); color: var(--white); }
.service-card.featured .service-icon svg { color: var(--gold-light); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-icon { margin-bottom: 1rem; color: var(--burgundy); }
.service-icon svg { width: 28px; height: 28px; transition: color var(--transition); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.3; }
.service-card p { font-size: 0.82rem; line-height: 1.7; margin-bottom: 1rem; color: var(--text-light); transition: color var(--transition); flex-grow: 1; }
.service-link { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--burgundy); transition: color var(--transition); }

.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.why-content p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.85; }
.why-features { display: flex; flex-direction: column; gap: 1.75rem; }
.why-feature { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--burgundy);
}
.why-feature-icon svg { width: 20px; height: 20px; }
.why-feature h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.why-feature p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.why-images { overflow: hidden; }
.why-images img { width: 100%; height: 520px; object-fit: cover; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
  text-align: left;
  border: 1px solid var(--gray-200);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card-img { overflow: hidden; }
.team-card-img img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-img img { transform: scale(1.03); }
.team-card-body { padding: 1.5rem 1.75rem; }
.team-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.team-role { font-size: 0.7rem; font-weight: 600; color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.team-specialty { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

.quote-section {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  border: none;
  padding: 0;
}
.quote-section cite {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-200); }
.office-card {
  background: var(--white);
  padding: 2rem 2rem;
  transition: all var(--transition);
}
.office-card:hover { background: var(--off-white); }
.office-card.main-office { border-left: 3px solid var(--gold); }
.office-card-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.office-card-header svg { color: var(--burgundy); flex-shrink: 0; }
.office-card-header h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.badge-main {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.12rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.office-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.5rem; }
.office-contact { display: flex; flex-direction: column; gap: 0.15rem; }
.office-contact a { font-size: 0.82rem; color: var(--burgundy); font-weight: 500; transition: color var(--transition); }
.office-contact a:hover { color: var(--burgundy-light); }

.cta-section {
  background: var(--burgundy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}
.cta-section h2 strong { font-weight: 700; }
.cta-section .cn-text { color: rgba(255,255,255,0.5); }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2.5rem; font-size: 0.95rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.faq-grid { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--burgundy); }
.faq-question svg { transition: transform var(--transition); flex-shrink: 0; color: var(--burgundy); min-width: 20px; }
.faq-question.active svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding-bottom: 1.25rem; font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { margin-bottom: 1.25rem; }
.footer-col p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-office { margin-bottom: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.footer-office strong { color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 3rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2rem; font-size: 0.72rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.5rem; }
.footer-affiliated a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-affiliated a:hover { color: var(--gold); }

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: all var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--burgundy); }

.page-hero {
  background: var(--navy);
  padding: 7rem 0 3.5rem;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--white);
  font-weight: 400;
}
.page-hero h1 strong { font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.5); margin-top: 1rem; max-width: 560px; font-size: 0.95rem; line-height: 1.8; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

.service-detail { padding: 5rem 0; border-bottom: 1px solid var(--gray-200); }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }
.service-detail h2 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--navy); font-weight: 600; margin-bottom: 1rem; }
.service-detail p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.85; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { background: var(--off-white); padding: 3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  background: transparent;
  border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-bottom-color: var(--burgundy); }
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-info-card { background: var(--navy); color: var(--white); padding: 3rem; }
.contact-info-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 2rem; font-weight: 400; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
}
.contact-detail h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.contact-detail a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-200); }
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--white);
}
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(107,29,42,0.85));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.news-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.news-card-img img { width: 100%; height: 220px; object-fit: cover; }
.news-card-body { padding: 1.75rem; }
.news-card-date { font-size: 0.68rem; color: var(--burgundy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.news-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.news-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

.career-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}
.career-card:hover { border-left: 3px solid var(--burgundy); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .top-bar { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { padding: 0.85rem 0; border-bottom: 1px solid var(--gray-100); }
  .nav-link::after { display: none; }
  .has-dropdown .dropdown-menu { position: static; box-shadow: none; display: none; padding-left: 1rem; border-top: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .btn-nav-contact { margin: 1rem 0 0; text-align: center; display: block; }
  .hero { min-height: auto; padding: 0; }
  .hero-inner { padding: 2.5rem 1.5rem; grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 2.25rem; }
  .hero-title-cn { font-size: 1.25rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-number { font-size: 2.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-accent { position: relative; bottom: auto; right: auto; margin-top: 0.75rem; width: 140px; }
  .about-experience-badge { top: -0.5rem; right: 0.5rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section h2 { font-size: 1.75rem; }
  .section { padding: 4.5rem 0; }
  .section-title { font-size: 2rem; }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 48px; height: 48px; }
  .back-to-top { bottom: 1.5rem; right: 4.5rem; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 2rem 1rem; }
  .hero-title { font-size: 1.85rem; }
  .hero-title-cn { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media print {
  .top-bar, .header, .whatsapp-float, .back-to-top, .hero-video { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
}
