/* =========================================================================
   SITE CHROME (sc-*) — global header & footer redesign.
   Frosted-glass navbar with icon menu + new login button, and a
   modern gradient footer. Scoped to header/footer elements only —
   does not touch page body styling.
   ========================================================================= */

/* ---------- Desktop navbar ---------- */
.sc-navbar {
  background: rgba(6, 8, 14, 0.75) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.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: #cbd5e1 !important;
  transition: all 0.25s ease;
}
.sc-nav-link i {
  font-size: 16px;
  color: #00f5a0;
  opacity: 0.85;
  transition: all 0.25s ease;
}
.sc-nav-link:hover,
.sc-nav-link.parent-nav-active {
  background: rgba(0, 245, 160, 0.12);
  color: #00f5a0 !important;
}
.sc-nav-link:hover i,
.sc-nav-link.parent-nav-active i {
  opacity: 1;
  color: #00f5a0;
}

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

/* ---------- Mobile navbar ---------- */
.sc-navbar-mobile {
  background: rgba(6, 8, 14, 0.85) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.sc-burger {
  background: rgba(17, 100, 85, 0.08) !important;
  border-radius: 12px !important;
  transition: background 0.25s ease;
}
.sc-burger:hover {
  background: rgba(17, 100, 85, 0.14) !important;
}
.sc-burger span:first-child {
  background: #116455 !important;
}
.sc-burger span:last-child {
  background: #39CD79 !important;
}

.sc-sidebar {
  background: #080c14 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.sc-sidebar-body {
  background: #0d121f !important;
}
.sc-sidebar-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #cbd5e1;
  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: #00f5a0;
  width: 22px;
  text-align: center;
}
.sc-sidebar-link:hover,
.sc-sidebar-link.parent-nav-active {
  background: rgba(0, 245, 160, 0.12) !important;
  color: #00f5a0;
  padding-left: 12px;
}

/* ---------- Footer ---------- */
.sc-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #04120f 0%, #073B32 45%, #116455 100%) !important;
  border-radius: 40px 40px 0 0;
  padding-top: 8px;
}
.sc-footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.sc-footer-glow--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #39CD79, transparent 70%);
  opacity: 0.18;
  top: -160px;
  left: -100px;
}
.sc-footer-glow--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #E8902E, transparent 70%);
  opacity: 0.14;
  bottom: -140px;
  right: -80px;
}

.sc-footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}
.sc-footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
}
.sc-footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-footer-heading i {
  color: #39CD79;
  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: rgba(255, 255, 255, 0.62);
  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: #39CD79;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sc-footer-links a:hover {
  color: #fff;
  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(57, 205, 121, 0.12);
  color: #39CD79;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.sc-footer-contact-item a,
.sc-footer-contact-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
}
.sc-footer-contact-item a:hover {
  color: #fff;
}

.sc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  text-align: center;
}
.sc-footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  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(13, 18, 31, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7);
  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: #cbd5e1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.sc-nav-dropdown__item i {
  color: #00f5a0;
  font-size: 15px;
  width: 18px;
  text-align: center;
}
.sc-nav-dropdown__item:hover {
  background: rgba(0, 245, 160, 0.12);
  color: #00f5a0;
}

/* ---------- 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: #cbd5e1;
  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(0, 245, 160, 0.12);
  color: #00f5a0;
}

/* ---------- Hotline Support Button ---------- */
.sc-hotline-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.12);
  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(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.sc-social-icon:hover {
  background: #39cd79;
  color: #0b0f19;
  transform: translateY(-2px);
}

/* ---------- App Download Button ---------- */
.sc-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !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: #39cd79;
}
.sc-app-btn:hover {
  background: #39cd79;
  color: #0b0f19 !important;
  border-color: #39cd79;
}
.sc-app-btn:hover i {
  color: #0b0f19;
}

