/* Dev by Đức Nobi */

.vhunter_main_banner {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.vhunter_main_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vhunter_banner_content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 2;
}

.vhunter_contact_form {
  max-width: 800px;
  background: white;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.vhunter_input {
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 600;
  color: #000;
  border: 2px solid #000;
}

.vhunter_input::placeholder {
  color: #999;
  font-weight: 600;
}

.vhunter_input:focus {
  outline: none;
  box-shadow: none;
  border-color: #000;
}

.vhunter_btn_success {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

.vhunter_btn_success:hover {
  background-color: whitesmoke;
  color: var(--secondary-color);
}

.social-icons a {
  text-decoration: none;
}

.vhunter_alert {
  position: fixed;
  top: 80px;
  right: -400px; /* Ẩn mặc định */
  background-color: var(--secondary-color);
  color: #fff;
  padding: 15px 25px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  z-index: 9999;
  max-width: 300px;
  transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

/* Hiển thị */
.vhunter_alert.show {
  right: 30px;
  opacity: 1;
  pointer-events: auto;
}

/* Ẩn */
.vhunter_alert.hidden {
  right: -400px;
  opacity: 0;
  pointer-events: none;
}

body {
  overflow-x: hidden;
}

.vhunter_main {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .vhunter_banner_content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .vhunter_banner_content_img {
    flex: 1 1 100%;
    text-align: center;
  }

  .vhunter_main_banner {
    height: 200px !important;
  }
  
  .vhunter_main_banner img {
      object-fit: fill !important;
  }
}