/* ============================= */
/* PROACTIVE CHARTERED HEADER   */
/* ============================= */

.pc-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER FIXE */
.pc-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  height: 110px;
}



.pc-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.pc-logo {
  width: 100px;
}

/* NAV DESKTOP */
.pc-nav-list {
  list-style: none;
  display: flex;
  gap: 40px;
}

.pc-nav-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: #033163;
  position: relative;
  transition: 0.3s;
}

.pc-nav-link:hover {
  color: #4e94da;
}

.pc-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #4e94da, #033163);
  transition: 0.3s;
}

.pc-nav-link:hover::after,
.pc-nav-link.pc-active::after {
  width: 100%;
}

/* HAMBURGER */
.pc-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.pc-hamburger span {
  width: 30px;
  height: 3px;
  background: #033163;
  transition: 0.3s;
}

/* HERO */
.pc-hero {
  position: relative;
  height: 550px;
  padding-top: 260px;
  overflow: hidden;
}

.pc-hero-slideshow {
  position: absolute;
  inset: 0;
}

.pc-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 6s ease;
  filter: brightness(60%);
}

.pc-hero-slide.pc-active {
  opacity: 1;
  transform: scale(1);
}

.pc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,49,99,0.45);
}

.pc-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.pc-hero-content h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.pc-hero-content p {
  font-size: 1.2rem;
}

/* MOBILE */
@media (max-width: 900px) {

  .pc-nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, #033163, #4e94da);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.4s;
  }

  .pc-nav.show {
    transform: translateX(0);
  }

  .pc-nav-list {
    flex-direction: column;
    gap: 30px;
  }

  .pc-nav-link {
    font-size: 1.6rem;
    color: #fff;
  }

  .pc-hamburger {
    display: flex;
  }

  .pc-hero {
    height: 550px;
  }

  .pc-hero-content h1 {
    font-size: 1.6rem;
  }
}
