/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* DEMO BUTTON */
.order-btn {
  margin: 50px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #000, #38bdf8);
  color: #fff;
  cursor: pointer;
}

/* OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* SHOW */
.popup-overlay.show {
  display: flex;
}

/* POPUP BOX */
.popup-box {
  position: relative;
  width: 95%;
  max-width: 420px;
  padding: 24px;
  border-radius: 14px;
  background: url("/images//home/footerbg.jpg") center/cover no-repeat;
  animation: popup 0.4s ease;
}

@keyframes popup {
  from {
    transform: scale(0.95) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* TITLE */
.popup-box h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, select {
  height: 48px;
  border-radius: 30px;
  padding: 0 16px;
  border: 2px dashed rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.8);
  outline: none;
}

/* BUTTON */
.submit-btn {
  height: 48px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #000, #38bdf8);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  filter: brightness(1.2);
}
