:root {
  --primary-lilac: #A09DCC;
  --deep-purple: #9B7ED4;
  --hover-purple: #8B6EC4;
  --bg-white: #FFFFFF;
  --text-dark: #2D3748;
  --bg-light: #F7FAFC;
  --shadow: rgba(155, 126, 212, 0.15);
  --brand-blue: #372C70;
  --accent-blue: #A09DCC;
  --light-blue: #A09DCC;
  --font-family: "Poppins", "Noto Sans CJK TC", "PingFang TC", "Microsoft YaHei", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
{ box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Zain", "Poppins", "Noto Sans CJK TC", "PingFang TC", "Microsoft YaHei", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: var(--text-dark);
  background: var(--bg-white);
}
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 24px;
  border-bottom: 2px solid #372C70;
  box-shadow: 0 2px 12px rgba(55, 44, 112, 0.1);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  flex-wrap: wrap;
  gap: 10px;
}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: #372C70; text-decoration: none; font-weight: 600; }
.nav-links a:hover { color: #A09DCC; }
.call-btn { background: #372C70; color: #fff !important; padding: 8px 16px; border-radius: 20px; }
.hero { text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #DED5F2 0%, #DED5F2 100%); }
.nav-logo { height: 100px; margin-right: 16px; vertical-align: middle; }
.brand { font-weight: 700; font-size: 32px; display: flex; align-items: center; text-transform: uppercase; letter-spacing: 1px; color: #372C70; font-family: "Cherry Bomb One", "Poppins", sans-serif; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-en { font-size: 28px; font-family: "PT Serif Caption", serif; }
.brand-cn { font-size: 28px; color: #372C70; font-family: "Noto Sans HK", "Noto Sans CJK TC", "PingFang TC", sans-serif; margin-top: 8px; }
.lang-switcher { display: inline-flex; gap: 6px; border: none; padding: 4px; background: transparent; }
.lang-btn { border: none; background: transparent; font-size: 18px; padding: 2px 4px; border-radius: 6px; cursor: pointer; }
.lang-btn { border: none; background: transparent; font-size: 18px; padding: 2px 4px; border-radius: 6px; cursor: pointer; box-sizing: border-box; }
.lang-btn { border: none; background: transparent; font-size: 18px; padding: 2px 4px; border-radius: 6px; cursor: pointer; }
.lang-btn.active { font-weight: bold !important; color: #372C70 !important; background: #DED5F2 !important; border-radius: 6px; }

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 50px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #372C70;
  border-radius: 2px;
}

/* Navigation Menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 24px;
  background: #fff;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  border-bottom: 2px solid #372C70;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 1001;
}

.nav-menu.active { display: flex; }

.nav-menu a {
  color: #372C70;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #A09DCC;
}
.hero { position: relative; text-align: center; padding: 0; background: #372C70; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { position: relative; z-index: 2; padding: 160px 20px; background: linear-gradient(to bottom, rgba(55,44,112,0.7), rgba(55,44,112,0.85)); min-height: 400px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.hero h1 { font-size: 40px; margin-bottom: 12px; color: #FFFFFF; }
.hero .tagline { font-size: 18px !important; color: #DED5F2 !important; font-family: "Zain", "Poppins", sans-serif; margin-bottom: 8px; line-height: 1.5; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.cta-button { background: #FFFFFF; color: #372C70; padding: 12px 22px; border-radius: 24px; font-weight: 700; text-decoration: none; display: inline-block; margin: 6px; }
.cta-button.secondary { background: #FFFFFF; color: #372C70; border: 2px solid #FFFFFF; }
.services { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.services h2 { text-align: center; font-size: 36px; color: #372C70; margin-bottom: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card { background: #fff; border: 2px solid #A09DCC; border-radius: 12px; padding: 8px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 8px 18px rgba(0,0,0,.05); }
.service-icon { width: 50px; height: 50px; margin-top: auto; margin-bottom: 2px; object-fit: contain; }
.contact { padding: 40px 20px; text-align: center; background: transparent; }
.contact h2 { color: #372C70; margin-bottom: 20px; }
.contact-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.contact-card { background: transparent; border: none; padding: 10px; text-align: center; }
.contact-card h3 { font-size: 16px; margin-bottom: 4px; color: #372C70; }
.contact-card p { margin: 4px 0; font-size: 14px; color: #372C70; }
.contact-card a { color: #372C70; text-decoration: underline; font-weight: 600; }
.contact-card a:hover { color: #A09DCC; text-decoration: none; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid #eee; }
footer { background: #333333; color: #fff; padding: 18px; text-align: center; }
@media (max-width: 768px) {
  .site-nav { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 5px; padding: 10px 12px; }
  .menu-toggle { display: flex; }
  .nav-right { position: absolute; top: auto; bottom: 4px; right: 60px; }
  .brand { font-size: 14px; }
  .brand-text { display: flex; flex-direction: column; }
  .brand-en { font-size: 14px; }
  .brand-cn { font-size: 18px; margin-top: 4px; }
  .nav-logo { height: 65px; }
  .nav-right { position: absolute; top: auto; bottom: 4px; right: 6px; }
  .lang-btn { font-size: 16px; padding: 2px; }
  .lang-switcher { gap: 6px; padding-top: 6px; }
  .hero { padding: 0; }
  .hero-content { padding: 80px 16px; min-height: 250px; }
  .hero h1 { font-size: 22px; }
  .hero .tagline { font-size: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-card { padding: 6px; min-height: auto; }
  .service-icon { width: 30px; height: 30px; }
  .service-card h3 { font-size: 11px; margin: 2px 0; }
  .services h2 { font-size: 20px; }
  .contact-grid { flex-direction: column; gap: 15px; }
  .contact-card { padding: 8px; }
  .contact-card h3 { font-size: 12px; }
  .contact-card p { font-size: 11px; }
  .cta-button { padding: 12px 20px; font-size: 16px; margin: 4px; }
  .hero-buttons { flex-direction: row; align-items: center; gap: 8px; }
  .about { padding: 20px 12px; }
  .about h2 { font-size: 18px; }
  .about p { font-size: 12px; }
}

.about { background: #372C70; color: #fff; padding: 40px 20px; text-align: center; }
.about h2 { color: #fff; margin-bottom: 16px; }
.about p { max-width: 700px; margin: 0 auto; line-height: 1.6; }
.nav-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; padding-bottom: 16px; padding-right: 16px; }
