/* ================= COMPANY PROFILE HERO ================= */

.profile-hero {
  width: 100%;
  height: 40vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: #06140f;
}

.profile-hero-bg {
  position: absolute;
  inset: 0;
  animation: bannerZoom 8s ease-in-out infinite alternate;
}

.profile-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 16, 12, 0.92) 0%,
      rgba(8, 31, 24, 0.70) 42%,
      rgba(8, 31, 24, 0.20) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.08) 45%,
      rgba(0,0,0,0.55) 100%
    );
  z-index: 1;
}

.profile-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 120px 7% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.profile-tag {
  width: fit-content;
  padding: 10px 24px;
  border: 1px solid #d7a84f;
  border-radius: 40px;
  color: #d7a84f;
  background: rgba(215,168,79,0.10);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease forwards;
}

.profile-hero-content h1 {
  font-size: clamp(42px, 7vw, 85px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 12px 30px rgba(0,0,0,0.55);
  animation: fadeUp 0.9s ease 0.15s forwards;
  opacity: 0;
}

.profile-hero-content p {
  max-width: 620px;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.7;
  color: #e6f0ec;
  animation: fadeUp 1s ease 0.25s forwards;
  opacity: 0;
}

.profile-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 7%;
  z-index: 3;
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 20px;
  overflow: hidden;
}

.profile-scroll-indicator span {
  display: block;
  width: 35px;
  height: 100%;
  background: #d7a84f;
  border-radius: 20px;
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* Mirror shine */
.profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transform: translateX(-130%) skewX(-20deg);
  animation: heroMirror 4s infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes bannerZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes heroMirror {
  0% {
    transform: translateX(-130%) skewX(-20deg);
  }
  45% {
    transform: translateX(250%) skewX(-20deg);
  }
  100% {
    transform: translateX(250%) skewX(-20deg);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateX(-40px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(85px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .profile-hero {
    height: 55vh;
    min-height: 380px;
  }

  .profile-hero-content {
    padding: 110px 6% 45px;
  }

  .profile-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 16, 12, 0.86) 0%,
        rgba(8, 31, 24, 0.68) 55%,
        rgba(0,0,0,0.65) 100%
      );
  }

  .profile-scroll-indicator {
    left: 6%;
    bottom: 22px;
  }
}
