/* Soluture top navigation with mega menus - injected into existing BuildOps header */
.sol-menu-wrap { margin-left: auto; }
.sol-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sol-menu > li {
  position: relative;
}
.sol-menu .sol-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 26px 0;
  display: inline-block;
  transition: color .18s ease;
  letter-spacing: 0.01em;
}
.sol-menu .sol-link:hover,
.sol-menu li.sol-open > .sol-link {
  color: #22a1e2;
}

/* Mega menu panel - full width, white background, matching reference */
.sol-mega {
  position: fixed;
  left: 0;
  right: 0;
  top: 72px; /* height of .nav */
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 24px 40px -12px rgba(0,0,0,0.18);
  padding: 40px 0 44px;
  display: none;
  z-index: 9998;
}
.sol-menu li.sol-open > .sol-mega {
  display: block;
}
.sol-mega-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}

.sol-mega-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f3f4f5;
  border-radius: 25px 25px 0 0;
  border-bottom: 3px solid transparent;
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.sol-mega-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #e5e7eb;
  border-radius: 25px 25px 0 0;
}
.sol-mega-card h4 {
  margin: 18px 20px 12px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: 0;
}
.sol-mega-card p {
  margin: 0 20px 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a4a4a;
  font-weight: 400;
}
.sol-mega-card:hover {
  border-bottom-color: #22a1e2;
}
.sol-mega-card:hover h4 {
  color: #22a1e2;
}

@media (max-width: 960px) {
  .sol-menu { gap: 16px; }
  .sol-menu .sol-link { font-size: 13px; }
  .sol-mega-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sol-menu-wrap { display: none; }
}

/* Soluture footer override */
.sol-footer-grid {
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.sol-footer-brand img.sol-foot-logo {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
}
.sol-footer-brand img.sol-foot-ms {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
}
.sol-footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.sol-footer-col ul { list-style: none; padding: 0; margin: 0; }
.sol-footer-col li { margin-bottom: 12px; }
.sol-footer-col a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .18s ease;
}
.sol-footer-col a:hover { color: #22a1e2; }
@media (max-width: 960px) {
  .sol-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sol-footer-grid { grid-template-columns: 1fr; }
}
