/* Navigation et footer V2 */
.navbar-oc .nav-link {
  position: relative;
}

.navbar-oc .nav-link::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  bottom: 0.32rem;
  left: 0.75rem;
  height: 2px;
  border-radius: 99px;
  background: var(--oc-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navbar-oc .nav-link:hover::after,
.navbar-oc .nav-link:focus-visible::after,
.navbar-oc .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-oc .nav-link.active {
  color: var(--oc-blue-deep);
  font-weight: 700;
}

.site-footer--minimal {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 90% -20%, rgba(0, 194, 196, 0.16), transparent 23rem),
    #101a2e;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer--minimal::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  left: -7rem;
  bottom: -7rem;
  border: 2.8rem solid rgba(255, 196, 0, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.footer-minimal__top {
  padding: 4.5rem 0 3.5rem;
}

.footer-minimal__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-minimal__lead {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

.footer-minimal__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 650;
}

.footer-minimal__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-minimal__links {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-minimal__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-minimal__links a:hover,
.footer-minimal__links a:focus-visible {
  color: #fff;
}

.footer-minimal__contact {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.footer-minimal__contact p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-minimal__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-minimal__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-minimal__social a:hover,
.footer-minimal__social a:focus-visible {
  border-color: rgba(0, 194, 196, 0.5);
  background: rgba(0, 194, 196, 0.14);
}

.footer-minimal__bottom {
  position: relative;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-minimal__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
}

.footer-minimal__bottom a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.footer-minimal__bottom a:hover,
.footer-minimal__bottom a:focus-visible {
  color: #fff;
}

@media (max-width: 991.98px) {
  .navbar-oc .nav-link::after {
    right: 40%;
    left: 40%;
  }
}

@media (max-width: 767.98px) {
  .footer-minimal__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-oc .nav-link::after,
  .footer-minimal__links a,
  .footer-minimal__social a {
    transition: none;
  }
}

/* Footer — navigation juridique */
.footer-minimal__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .55rem 1rem;
}

.footer-minimal__legal a {
    color: inherit;
    opacity: .78;
    text-decoration: none;
}

.footer-minimal__legal a:hover,
.footer-minimal__legal a:focus-visible {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: .2em;
}

@media (max-width: 767.98px) {
    .footer-minimal__legal {
        justify-content: flex-start;
    }
}
