* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Archivo";
  src: url("../../assets/font/Archivo/static/Archivo-Regular.ttf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Light";
  src: url("../../assets/font/Archivo/static/Archivo-Light.ttf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Light Italic";
  src: url("../../assets/font/Archivo/static/Archivo-LightItalic.ttf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Bold";
  src: url("../../assets/font/Archivo/static/Archivo-Bold.ttf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Extra Bold";
  src: url("../../assets/font/Archivo/static/Archivo-ExtraBold.ttf")
    format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Medium";
  src: url("../../assets/font/Archivo/static/Archivo-Medium.ttf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Archivo Medium Italic";
  src: url("../../assets/font/Archivo/static/Archivo-MediumItalic.ttf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Archivo Bold Italic";
  src: url("../../assets/font/Archivo/static/Archivo-BoldItalic.ttf")
    format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Archivo SemiBold";
  src: url("../../assets/font/Archivo/static/Archivo-SemiBold.ttf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Bold";
  src: url("../../assets/font/Archivo/static/Archivo-Bold.ttf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Archivo Expanded";
  src: url("../../assets/font/Archivo/static/Archivo_Expanded-Regular.ttf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Archivo Expanded Medium";
  src: url("../../assets/font/Archivo/static/Archivo_Expanded-Medium.ttf")
    format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: "Archivo Expanded Bold";
  src: url("../../assets/font/Archivo/static/Archivo_Expanded-Bold.ttf")
    format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Brunson";
  src: url("../../assets/font/brunson/Brunson.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --primary-color: #d1b883;
  --secondary-color: #b4b4b4;
}
html {
  background-color: #000;
  color: #fff;
  font-family: "Archivo", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  max-width: 1440px;
  background-image: url("../image/main-background.svg");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}
.body-success-form {
  background-size: cover !important;
  background-image: url("../image/main-background.svg");

}

.home-section {
  width: 100%;
  max-width: 1028px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.home-section .logo {
  margin-top: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.logo img {
  min-width: 549px;
}
.home-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle-container {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  justify-content: space-between;
}

.subtitle {
  font-size: 10px;
  font-family: Archivo Light, sans-serif;
  letter-spacing: 2px;
  color: #ccc;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  width: 104px;
}

.subtitle2 {
  font-size: 10px;
  font-family: Archivo Light, sans-serif;
  letter-spacing: 2px;
  color: #ccc;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  width: 103px;
}
.logo {
  max-width: 350px;
  max-height: 130px;
  display: inline;
}
.headline-img {
  margin-bottom: 189px;
}

.arrow-down-button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  height: 50px;
}

.arrow-down-button img {
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.benefit-section {
  margin-top: 20px;
}
.benefit-img {
  padding-top: 80px;
}
.exclusive {
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 40px;
}

/* upload */

.upload-wrapper {
  text-align: center;
  margin-top: 36px;
}

.drop-area {
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: auto;
  position: relative;
  min-height: 283px;
  justify-content: center;
}
.drop-area input[type="file"] {
  position: absolute;
  inset: 0; /* sama dengan top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.drop-area::before,
.drop-area::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #d1b883 0 12px,
    transparent 12px 25px
  );
}

.drop-area::before {
  top: 0;
}
.drop-area::after {
  bottom: 0;
}

.drop-area .side {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background-image: repeating-linear-gradient(
    to bottom,
    #d1b883 0 12px,
    transparent 12px 20px
  );
}
.drop-area .side.left {
  left: 0;
}
.drop-area .side.right {
  right: 0;
}

.drop-area::before,
.drop-area::after,
.drop-area .side {
  z-index: 1;
}

.drop-area input[type="file"] {
  z-index: 10;
}
.drop-area::before,
.drop-area::after,
.drop-area .side {
  pointer-events: none;
}

.drop-area.dragover {
  background: rgba(200, 162, 75, 0.1);
  border-color: #ffd55a;
}

.drop-area svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.description {
  color: white;
  margin-bottom: 0px;

  font-family: Archivo;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}

.browse-btn {
  position: relative !important;
  padding: 12px 32px !important;
  border: 1px solid var(--primary-color);
  border-radius: 60px;
  background: transparent;
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 16px !important;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Archivo Bold;
  vertical-align: middle;
  text-transform: uppercase;
  top: 0px !important;
  pointer-events: all !important;
}

.browse-btn:hover {
  color: white !important;
  background-color: var(--primary-color);
  border: none
}

input[type="file"] {
  display: none;
}

.file-name {
  font-family: Archivo;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  opacity: 50%;
}

.preview {
  width: 100%;
  display: none;
  align-items: center;
  min-height: 119;
  justify-content: space-between;
  opacity: 1;
  border-radius: 8px;
  padding: 28px 56px;
  background: #d1b88336;
  cursor: pointer;
}

.preview img {
  max-width: 100px;
  aspect-ratio: 2/1;
  object-fit: cover;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.information-2 {
  letter-spacing: 2px;
  color: #ccc;
  margin-top: 61px;
  text-transform: uppercase;
  max-width: 655px;
  text-align: center;
  font-family: Archivo;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  max-width: 100%;
}

.information-3 {
  max-width: 655px;
  margin-top: 160px;
  font-family: Archivo;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 15%;
  text-align: center;
  text-transform: uppercase;
}

.register-form {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 109px;
  font-family: Archivo Light, sans-serif;
  color: white;
  width: 100%;
  max-width: 1028px;
}

.form-field {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.register-form .label-card {
  position: relative;
  display: flex;
  justify-content: start;
}

.register-form label {
  position: absolute;
  top: 12px;
  padding: 0 6px;
  transition: transform 0.18s ease, font-size 0.18s ease, top 0.18s ease;
  pointer-events: none;
  font-family: Archivo;
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  color: white;
}

label.error {
  color: red;
}

.register-form input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #d1b883; /* gold color */
  padding: 0.5rem 0;
  font-size: 30px;
  font-family: Archivo Light, sans-serif;
  color: white;
  outline: none;
  height: 62px;
}

.register-form input:focus + label,
.register-form input:not(:placeholder-shown) + label {
  opacity: 0;
  transition: all 0.3s ease;
}

.register-form input::placeholder {
  font-family: Archivo;
  font-weight: 400;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: white;
}

.register-form small.note {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-align: start;
  font-family: Archivo Light Italic, sans-serif;
  font-weight: 400;
}

.register-form button {
  margin-top: 9px;
  padding: 28px 80px;
  border: none;
  background: var(--primary-color);
  color: #ffffff;
  letter-spacing: 5px;
  border-radius: 50px;
  cursor: pointer;
  align-self: center;
  transition: all 0.3s ease;
  border-radius: 60px;
  border-width: 1px;
  font-family: Archivo Extra Bold;
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.register-form button:hover {
  background-color: #cfae66;
  color: black;
}

footer {
  color: #8f8f8f;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: Archivo Expanded;
  font-weight: 500;
  font-style: Medium;
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
  max-width: 1080px;
}

.custom-footer {
  margin: 42px auto;
}

br {
  display: none;
}
footer span {
  font-family: Archivo Expanded Medium;
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 20px;
  text-align: right;
  text-transform: uppercase;
}

.custom-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(30, 30, 30, 0.95);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
  border: 1px solid transparent;
}

.custom-alert.show {
  opacity: 1;
  pointer-events: auto;
}

/* Alert types */
.custom-alert.success {
  color: #cfae66;
  border-color: #cfae66;
}

.custom-alert.error {
  color: #ff6666;
  border-color: #ff6666;
}

#alert-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #cfae66;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Hide spinner initially */
.hidden {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* success form */

.success-form {
  margin: 75px 200px 0px 200px;
  width: 100%;
  max-width: 1031px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.success-form .logo img{
  width: 100%;
  max-width: 275px;
  min-width: 100%;
}

.container {
  border: 1px solid var(--primary-color);
  max-width: 1032px;
  border-radius: 27px;
  background: linear-gradient(
    180deg,
    rgba(209, 184, 131, 0.15) 0%,
    rgba(37, 27, 6, 0.15) 100%
  );
  backdrop-filter: blur(40px);
  box-shadow: 0px 0px 44.9px -15px #000000d9;
  opacity: 1;
  border-radius: 27px;
  border-width: 1px;
  padding-bottom: 27px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.heading {
  min-height: 223px;
  background-image: url("../image/main-background.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position-y: -171px;
  padding-top: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.heading .logo {
  display: flex;
  justify-content: center;
}

.modal-headline {
  background: radial-gradient(
    50% 382.74% at 50% 50%,
    rgba(209, 184, 131, 0.3) 0%,
    rgba(209, 184, 131, 0) 73.56%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
  padding: 12px 0px;
}

.modal-body {
  padding: 32px 95px;
}

.modal-headline h1 {
  font-family: Archivo Expanded Bold;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

.modal-list {
  list-style: none;
  counter-reset: my-counter;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 36px;
}

.modal-list li {
  counter-increment: my-counter;
  position: relative;
  color: var(--primary-color);
  font-family: Brunson;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  padding-left: 50px;
  text-align: start;
}

.modal-list li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 50%;
  padding: 6px 8px;
  transform: translateY(-50%);
  color: var(--primary-color);
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  line-height: 100%;
  font-family: Brunson;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}

.modal-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.modal-item h2 {
  font-family: Archivo;
  text-align: left;
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
}
.modal-item a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: white;
  -webkit-text-decoration: underline;
}

.example-phone {
  background: #d1b8831a;
  padding: 16px 32px;
  color: white;
  font-family: Archivo Bold;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  width: max-content;
  font-size: 20px;
  line-height: 100%;
  border-radius: 13px;
  margin: 24px 0px;
}
.example-phone span {
  font-family: Archivo ;
  color: var(--primary-color);
  font-weight: 400;
  font-style: italic;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-height: 134px;
}

.bullet-points {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--secondary-color);
  font-family: Archivo;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.bullet-points ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
}
.modal-footer ul li::marker {
  color: var(--secondary-color);
  font-size: 20px;
}

.modal-footer {
  margin-top: 32px;
}

.modal-footer h1 {
  font-family: Archivo;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 48px;
}

.modal-footer a {
  color: var(--primary-color);
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

.list-item a {
  font-family: Archivo SemiBold;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}
