/* =====================================================
   Contact Page
   ===================================================== */

/* Hero Banner */
.hk-contact-hero {
  position: relative;
  min-height: 377px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hk-contact-hero__bg {
  position: absolute;
  inset: 0;
  background: no-repeat center center;
  background-size: cover;
  opacity: 0.35;
  filter: grayscale(100%);
  transform: scale(1);
  animation: hkContactHeroZoom 10s ease-in-out infinite;
}

@keyframes hkContactHeroZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.hk-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.45) 0%,
    rgba(10, 10, 15, 0.92) 100%
  );
}

.hk-contact-hero__title {
  position: relative;
  z-index: 1;
  font-size: 57px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 8px;
  margin-top: 97px;
}

/* Main */
.hk-contact-main {
  background: #161619;
  padding: 60px 0 70px;
}

.hk-contact-v3 {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 44px;
  align-items: start;
}

/* tech5-like card */
.hk-contact-v3__card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  padding: 34px;
}

.hk-contact-v3__title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hk-contact-v3__lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  font-size: 15px;
}

.hk-contact-v3__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hk-contact-v3__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.hk-contact-v3__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hk-contact-v3__input,
.hk-contact-v3__textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hk-contact-v3__textarea {
  resize: vertical;
}

.hk-contact-v3__input:focus,
.hk-contact-v3__textarea:focus {
  border-color: rgba(255, 145, 1, 0.55);
  box-shadow: 0 0 0 5px rgba(255, 145, 1, 0.12);
}

.hk-contact-v3__actions {
  margin-top: 6px;
}

/* Info list (tech5-like separators + circles) */
.hk-contact-v3__info {
  border-radius: 28px;
  padding: 26px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.hk-contact-v3__info-list {
  border-radius: 22px;
  padding: 10px 6px;
}

.hk-contact-v3__info-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 10px;
}

.hk-contact-v3__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
  margin: 4px 10px;
}

.hk-contact-v3__info-icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      80px 80px at 50% 35%,
      rgba(255, 255, 255, 0.06),
      rgba(0, 0, 0, 0.18) 60%
    ),
    rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.hk-contact-v3__info-icon i {
  font-size: 26px;
}

.hk-contact-v3__info-kicker {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
}

.hk-contact-v3__info-value {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  line-height: 1.1;
  display: inline-block;
}

.hk-contact-v3__info-value:hover {
  text-decoration: underline;
}

.hk-contact-v3__thumb {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.hk-contact-v3__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Map */
.hk-contact-map {
  background: #111112;
}

.hk-contact-map__iframe {
  width: 100%;
  height: 460px;
  display: block;
}

/* CTA */
.hk-contact-cta {
  background: #161619;
  padding: 55px 0 95px;
}

.hk-contact-cta__inner {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(
      1200px 240px at 10% 0%,
      rgba(255, 145, 1, 0.16),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.02);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hk-contact-cta__title {
  margin: 0 0 8px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.hk-contact-cta__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 992px) {
  .hk-contact-v3 {
    grid-template-columns: 1fr;
  }

  .hk-contact-v3__grid-2 {
    grid-template-columns: 1fr;
  }

  .hk-contact-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
