/* =========================================================================
   SITE CHROME (sc-*) — global header & footer redesign.
   Light theme, frosted-glass navbar with icon menu + login button, and a
   soft light footer. Brand color: #2d3475. Scoped to header/footer
   elements only — does not touch page body styling.
   ========================================================================= */

/* ---------- Desktop navbar ---------- */
.sc-navbar {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(45, 52, 117, 0.1);
  box-shadow: 0 10px 30px rgba(45, 52, 117, 0.08);
}

.sc-nav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #3c4166 !important;
  transition: all 0.25s ease;
}
.sc-nav-link i {
  font-size: 16px;
  color: #2d3475;
  opacity: 0.75;
  transition: all 0.25s ease;
}
.sc-nav-link:hover,
.sc-nav-link.parent-nav-active {
  background: rgba(45, 52, 117, 0.08);
  color: #2d3475 !important;
}
.sc-nav-link:hover i,
.sc-nav-link.parent-nav-active i {
  opacity: 1;
  color: #2d3475;
}

.sc-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2d3475 0%, #4a54b8 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(45, 52, 117, 0.35);
  transition: all 0.25s ease;
  text-decoration: none !important;
}
.sc-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(45, 52, 117, 0.5);
}
.sc-nav-cta i {
  font-size: 16px;
}

/* ---------- Mobile navbar ---------- */
.sc-navbar-mobile {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(45, 52, 117, 0.1) !important;
}

.sc-burger {
  background: rgba(45, 52, 117, 0.08) !important;
  border-radius: 12px !important;
  transition: background 0.25s ease;
}
.sc-burger:hover {
  background: rgba(45, 52, 117, 0.14) !important;
}
.sc-burger span:first-child {
  background: #2d3475 !important;
}
.sc-burger span:last-child {
  background: #4a54b8 !important;
}

.sc-sidebar {
  background: #ffffff !important;
  border: 1px solid rgba(45, 52, 117, 0.12) !important;
  box-shadow: 0 20px 50px rgba(45, 52, 117, 0.18);
}
.sc-sidebar-body {
  background: #ffffff !important;
}
.sc-sidebar-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  background: transparent !important;
  border-bottom: 1px solid rgba(45, 52, 117, 0.08) !important;
  color: #3c4166;
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
.sc-sidebar-link i {
  font-size: 18px;
  color: #2d3475;
  width: 22px;
  text-align: center;
}
.sc-sidebar-link:hover,
.sc-sidebar-link.parent-nav-active {
  background: rgba(45, 52, 117, 0.08) !important;
  color: #2d3475;
  padding-left: 12px;
}

/* ---------- Footer ---------- */
.sc-footer {
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  border-top: 1px solid rgba(45, 52, 117, 0.1);
  border-radius: 40px 40px 0 0;
  padding-top: 8px;
}
.sc-footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.sc-footer-glow--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #2d3475, transparent 70%);
  opacity: 0.08;
  top: -160px;
  left: -100px;
}
.sc-footer-glow--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  opacity: 0.07;
  bottom: -140px;
  right: -80px;
}

.sc-footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}
.sc-footer-desc {
  color: #6a6f94;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
}
.sc-footer-heading {
  color: #1a1d3a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-footer-heading i {
  color: #2d3475;
  font-size: 18px;
}
.sc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sc-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a6f94;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease, padding-left 0.25s ease;
}
.sc-footer-links a i {
  font-size: 12px;
  color: #2d3475;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sc-footer-links a:hover {
  color: #2d3475;
  padding-left: 4px;
}
.sc-footer-links a:hover i {
  opacity: 1;
}
.sc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sc-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sc-footer-contact-item i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(45, 52, 117, 0.08);
  color: #2d3475;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding-bottom: 9px;
}
.sc-footer-contact-item a,
.sc-footer-contact-item p {
  color: #6a6f94;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
}
.sc-footer-contact-item a:hover {
  color: #2d3475;
}

.sc-footer-bottom {
  border-top: 1px solid rgba(45, 52, 117, 0.1);
  padding: 26px 0;
  text-align: center;
}
.sc-footer-bottom p {
  color: #9497b3;
  font-size: 13.5px;
  margin: 0;
}

@media (max-width: 1024px) {
  .sc-footer { border-radius: 28px 28px 0 0; }
}

/* ---------- Desktop Services dropdown ---------- */
.sc-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sc-nav-dropdown__caret {
  font-size: 12px !important;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.sc-nav-dropdown:hover .sc-nav-dropdown__caret {
  transform: rotate(180deg);
}

.sc-nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(45, 52, 117, 0.12);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 50px rgba(45, 52, 117, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 999;
  margin-top: 6px;
}

/* Invisible bridge so mouse hover is never lost when moving down */
.sc-nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.sc-nav-dropdown:hover .sc-nav-dropdown__menu,
.sc-nav-dropdown:focus-within .sc-nav-dropdown__menu,
.sc-nav-dropdown__menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sc-nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3c4166;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.sc-nav-dropdown__item i {
  color: #2d3475;
  font-size: 15px;
  width: 18px;
  text-align: center;
}
.sc-nav-dropdown__item:hover {
  background: rgba(45, 52, 117, 0.08);
  color: #2d3475;
}

/* ---------- Mobile Services submenu ---------- */
.sc-sidebar-submenu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px 6px 10px 44px;
}
.sc-sidebar-sublink {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3c4166;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.sc-sidebar-sublink:hover,
.sc-sidebar-sublink.nuxt-link-exact-active {
  background: rgba(45, 52, 117, 0.08);
  color: #2d3475;
}

/* ---------- Hotline Support Button ---------- */
.sc-hotline-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.sc-hotline-btn i {
  font-size: 16px;
  color: #22c55e;
}
.sc-hotline-btn:hover {
  background: #22c55e;
  color: #ffffff !important;
  border-color: #22c55e;
  transform: translateY(-2px);
}
.sc-hotline-btn:hover i {
  color: #ffffff;
}

/* ---------- Social Icons ---------- */
.sc-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 52, 117, 0.08);
  color: #2d3475;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.sc-social-icon:hover {
  background: #2d3475;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---------- App Download Button ---------- */
.sc-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 52, 117, 0.06);
  border: 1px solid rgba(45, 52, 117, 0.15);
  color: #1a1d3a !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.sc-app-btn i {
  font-size: 16px;
  color: #2d3475;
}
.sc-app-btn:hover {
  background: #2d3475;
  color: #ffffff !important;
  border-color: #2d3475;
}
.sc-app-btn:hover i {
  color: #ffffff;
}
