.sticky-offset {  top: 10vh; /* atau 1rem, sesuai kebutuhan */}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
  max-width: 400px;
}

.country-select {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.flag-icon {
  width: 20px;
  height: 14px;
  margin-right: 6px;
}

select {
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
}

inputinput[type="tel"] {
  border: none;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.navbar-gradientnya {
    background: linear-gradient(165deg,rgba(255, 255, 255, 1) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    box-shadow: none;
}
/* HILANG DI MOBILE */
@media (max-width: 768px) {
    .navbar-gradientnya {
        background: #ffffff !important;
    }
}
/* overlay putih di atas background (opacity diubah saat scroll) */
.navbar-gradientnya::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    /* awalnya transparan */
    pointer-events: none;
    transition: opacity 240ms ease;
}
/* saat putih penuh */
.navbar-gradientnya.is-white {
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.08);
}
.navbar-gradientnya.is-white::after {
    opacity: 1;
}
/* Pastikan brand tidak ketutup overlay & selalu tampak */
.navbar-gradientnya .navbar-brand {
    position: relative;
    z-index: 1;
}
.navbar-gradientnya .navbar-brand img {
    display: block;
    height: 40px;
    width: auto;
    transition: filter 180ms ease, opacity 180ms ease;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}
/* Section hero full-bleed */
.hero-wrap {
    position: relative;
    background:    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('/assets/img/background_mvbusiness.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    margin-top: -110px;
}
.menu-putih {
    display: block;
    color: white !important;
}
.menu-hitam {
    display: block;
    color: black !important;
    z-index: 1;
    transition: filter 180ms ease, opacity 180ms ease;
}
.footer-mv {
    background-color: #f8f9fa;
    border-top: none !important;
}
.color-mv {
    color: #E0B049 !important;
}
.minevesting-btn {
    background-color: #E0B049 !important;
    border-color: #E0B049 !important;
    color: #fff !important;  /* teks putih agar kontras */
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.minevesting-btn:hover {
    background-color: #c99a3f !important; /* sedikit lebih gelap saat hover */
    border-color: #c99a3f !important;
    box-shadow: 0 4px 12px rgba(224, 176, 73, 0.4);
}

/* Badge kecil di sebelah tombol sebagai feedback */
.copy-toast {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 2000;
}
.copy-toast.show { opacity: 1; }

/* Jangan sembunyikan dz-message ketika max files tercapai */
#dropzone-resume .dz-message {
    display: block !important;
}

/* Ketika Dropzone normally hide the message, force show it */
#dropzone-resume.dz-max-files-reached .dz-message {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
