/* ===== demo-page-only styles (not part of the footer code) ===== */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0a1628;
}
.demo-page-filler {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* =============================================
     OJG FOOTER — Premium scoped redesign
     All selectors scoped under #ojgFt9213x so this
     block CANNOT affect/override any other section,
     header, body, or element on the website.
     ============================================= */

#ojgFt9213x,
#ojgFt9213x * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#ojgFt9213x {
  /* design tokens, scoped — won't leak outside the footer */
  --ojg-navy: #0a1628;
  --ojg-navy-soft: #0e2036;
  --ojg-blue: #0978ef;
  --ojg-blue-deep: #014392;
  --ojg-text: rgba(255, 255, 255, 0.62);
  --ojg-text-dim: rgba(255, 255, 255, 0.36);
  --ojg-line: rgba(255, 255, 255, 0.08);

  position: relative;
  background:
    radial-gradient(
      620px 320px at 12% -10%,
      rgba(9, 120, 239, 0.16),
      transparent 60%
    ),
    radial-gradient(
      560px 280px at 100% 0%,
      rgba(9, 120, 239, 0.08),
      transparent 55%
    ),
    var(--ojg-navy);
  width: 100%;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 40px) 0;
  overflow: hidden;
}

/* premium top accent hairline */
#ojgFt9213x::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ojg-blue) 25%,
    #4fb6ff 50%,
    var(--ojg-blue) 75%,
    transparent
  );
  opacity: 0.85;
}

/* ── Grid wrapper ── */
#ojgFt9213x .ojgFt9213x-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1fr 1.15fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 52px);
  border-bottom: 1px solid var(--ojg-line);
}

/* subtle vertical dividers between columns on desktop — premium touch */
@media (min-width: 901px) {
  #ojgFt9213x .ojgFt9213x-col {
    position: relative;
    padding-left: clamp(24px, 3vw, 40px);
  }
  #ojgFt9213x .ojgFt9213x-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
      180deg,
      transparent,
      var(--ojg-line) 20%,
      var(--ojg-line) 80%,
      transparent
    );
  }
}

/* ── Col 1 : Logo ── */
#ojgFt9213x .ojgFt9213x-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
}

#ojgFt9213x .ojgFt9213x-logo img {
  height: clamp(
    84px,
    9vw,
    136px
  ); /* was 70px — now noticeably bigger on every breakpoint */
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(9, 120, 239, 0.25));
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

#ojgFt9213x .ojgFt9213x-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 22px rgba(9, 120, 239, 0.4));
}

/* ── Col 1 : About text ── */
#ojgFt9213x .ojgFt9213x-about {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ojg-text);
  line-height: 1.8;
  max-width: 360px;
}

/* ── Col 1 : Social icons ── */
#ojgFt9213x .ojgFt9213x-socials {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

#ojgFt9213x .ojgFt9213x-socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ojg-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ojg-text);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#ojgFt9213x .ojgFt9213x-socials a:hover {
  background: linear-gradient(135deg, var(--ojg-blue), var(--ojg-blue-deep));
  border-color: var(--ojg-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(9, 120, 239, 0.35);
}

/* ── Column headings ── */
#ojgFt9213x .ojgFt9213x-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

#ojgFt9213x .ojgFt9213x-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--ojg-blue), var(--ojg-blue-deep));
  border-radius: 2px;
}

/* ── Quick Links & Services lists ── */
#ojgFt9213x .ojgFt9213x-links,
#ojgFt9213x .ojgFt9213x-services {
  list-style: none;
}

#ojgFt9213x .ojgFt9213x-links li,
#ojgFt9213x .ojgFt9213x-services li {
  margin-bottom: 13px;
}

#ojgFt9213x .ojgFt9213x-links li a,
#ojgFt9213x .ojgFt9213x-services li a {
  font-size: 14px;
  color: var(--ojg-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

#ojgFt9213x .ojgFt9213x-links li a::before,
#ojgFt9213x .ojgFt9213x-services li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ojg-blue);
  opacity: 0.5;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

#ojgFt9213x .ojgFt9213x-links li a:hover,
#ojgFt9213x .ojgFt9213x-services li a:hover {
  color: #fff;
  padding-left: 4px;
}

#ojgFt9213x .ojgFt9213x-links li a:hover::before,
#ojgFt9213x .ojgFt9213x-services li a:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--ojg-blue);
}

/* ── Contact items — now fully clickable cards ── */
#ojgFt9213x .ojgFt9213x-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding: 10px;
  margin-left: -10px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

/* only the clickable ones (a tags) get the hover affordance */
a#ojgFt9213x .ojgFt9213x-contact-item,
#ojgFt9213x a.ojgFt9213x-contact-item:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(3px);
}

#ojgFt9213x .ojgFt9213x-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(9, 120, 239, 0.12);
  border: 1px solid rgba(9, 120, 239, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

#ojgFt9213x a.ojgFt9213x-contact-item:hover .ojgFt9213x-contact-icon {
  background: linear-gradient(135deg, var(--ojg-blue), var(--ojg-blue-deep));
  border-color: var(--ojg-blue);
  box-shadow: 0 6px 16px rgba(9, 120, 239, 0.35);
}

#ojgFt9213x .ojgFt9213x-contact-icon i {
  font-size: 14px;
  color: var(--ojg-blue);
  transition: color 0.3s ease;
}

#ojgFt9213x a.ojgFt9213x-contact-item:hover .ojgFt9213x-contact-icon i {
  color: #fff;
}

#ojgFt9213x .ojgFt9213x-contact-text {
  font-size: 13.5px;
  color: var(--ojg-text);
  line-height: 1.7;
  padding-top: 8px;
  transition: color 0.3s ease;
}

#ojgFt9213x a.ojgFt9213x-contact-item:hover .ojgFt9213x-contact-text {
  color: #fff;
}

/* ── Bottom bar ── */
#ojgFt9213x .ojgFt9213x-bottom {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

#ojgFt9213x .ojgFt9213x-copy {
  font-size: 13px;
  color: var(--ojg-text-dim);
}
#ojgFt9213x .ojgFt9213x-copy span {
  color: var(--ojg-blue);
  font-weight: 600;
}

#ojgFt9213x .ojgFt9213x-bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

#ojgFt9213x .ojgFt9213x-bottom-links a {
  font-size: 12px;
  color: var(--ojg-text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

#ojgFt9213x .ojgFt9213x-bottom-links a:hover {
  color: var(--ojg-blue);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  #ojgFt9213x .ojgFt9213x-inner {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  #ojgFt9213x .ojgFt9213x-col-contact {
    grid-column: 1 / -1;
    padding-left: 0;
  }
  #ojgFt9213x .ojgFt9213x-col-contact::before {
    display: none;
  }
  #ojgFt9213x .ojgFt9213x-col-contact .ojgFt9213x-contact-item {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  #ojgFt9213x .ojgFt9213x-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  #ojgFt9213x .ojgFt9213x-col {
    padding-left: 0;
  }
  #ojgFt9213x .ojgFt9213x-col::before {
    display: none;
  }
  #ojgFt9213x .ojgFt9213x-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  #ojgFt9213x {
    padding: 44px 22px 0;
  }
  #ojgFt9213x .ojgFt9213x-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: left;
  }
  #ojgFt9213x .ojgFt9213x-about {
    max-width: 100%;
  }
  #ojgFt9213x .ojgFt9213x-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  #ojgFt9213x .ojgFt9213x-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  #ojgFt9213x .ojgFt9213x-logo img {
    height: 78px;
  }
  #ojgFt9213x .ojgFt9213x-socials a {
    width: 36px;
    height: 36px;
  }
}
