body{
  margin:0;
  background:#0a0a0a;
  color:white;
  font-family:'Poppins',sans-serif;
}

/* HEADER */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;

  background: #0a0a0a;
  border-bottom:3px solid rgba(255,255,255,0.06);
}

/* SITE NAME */
.site-logo {
  font-size: 22px;
  font-weight: 600;
  color: white;
  font-family: 'Yeseva One', serif;

}

.site-logo span {
  color: gold;
}

/* BUTTONS */
.back-btn,
.home-btn {
  color: gold;
  text-decoration: none;

  border: 1px solid gold;
  padding: 8px 14px;
  border-radius: 30px;

  transition: 0.3s;
}

.back-btn:hover,
.home-btn:hover {
  background: gold;
  color: black;
}

/* MOBILE */
@media (max-width: 600px) {
  .site-logo {
    font-size: 18px;
  }

  .back-btn,
  .home-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* BUTTONS */
.back-btn,
.home-btn {
  color: gold;
  text-decoration: none;

  border: 1px solid gold;
  padding: 8px 14px;
  border-radius: 30px;

  transition: 0.3s;
}

.back-btn:hover,
.home-btn:hover {
  background: gold;
  color: black;
}


/* TOP */
.progress-wrapper{
  position:sticky;
  top:0;
  z-index:1000;

  background:#0a0a0a;

  padding:20px;

  border-bottom:
  1px solid rgba(255,215,0,0.08);

  backdrop-filter:blur(12px);
}

/* BAR */
.progress-top{
  display:flex;
  align-items:center;
  gap:15px;
}

.progress-bar{
  flex:1;
  height:10px;

  background:
  rgba(255,255,255,0.05);

  border-radius:20px;

  overflow:hidden;
}

.progress-fill{
  width:25%;
  height:100%;

  background:gold;

  transition:0.4s ease;
}

.progress-percent{
  color:gold;
  font-size:14px;
}

/* STEPS */
.steps{
  display:flex;
  justify-content:space-between;

  margin-top:20px;
}

.step{
  display:flex;
  flex-direction:column;
  align-items:center;

  gap:8px;

  color:#666;

  font-size:13px;

  transition:0.3s ease;
}

.step i{
  width:42px;
  height:42px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  rgba(255,255,255,0.04);
}

.step.active{
  color:gold;
}

.step.active i{
  background:gold;
  color:black;

  box-shadow:
  0 0 18px rgba(255,215,0,0.25);
}

/* CARD */
.form-card{
  max-width:700px;

  margin:50px auto;

  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,215,0,0.08);

  border-radius:28px;

  padding:40px;

  box-shadow:
  0 10px 40px rgba(0,0,0,0.35);
}

/* STEPS */
.form-step{
  display:none;

  animation:fade 0.4s ease;
}

.form-step.active{
  display:block;
}

@keyframes fade{

  from{
    opacity:0;
    transform:
    translateX(40px);
  }

  to{
    opacity:1;
    transform:
    translateX(0);
  }

}

.form-step h2{
  font-size:34px;
  margin-bottom:10px;
  font-family: 'Domine', serif;
}

.form-step p{
  color:#999;
  margin-bottom:35px;

}

/* INPUTS */
.input-group{
  display:flex;
  flex-direction:column;

  gap:10px;

  margin-bottom:24px;
}

.input-group label{
  color:#ddd;
  font-size:14px;
}

.input-group input,
.input-group textarea,
.input-group select{

  height:52px;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,215,0,0.08);

  border-radius:16px;

  padding:0 16px;

  color:white;

  outline:none;

  transition:0.3s ease;
}

textarea{
  height:auto !important;
  padding-top:16px !important;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{

  border-color:gold;

  box-shadow:
  0 0 18px rgba(255,215,0,0.08);
}

/* RADIO GRID */
.radio-grid{
  display:grid;
  grid-template-columns:
  repeat(2,1fr);

  gap:18px;

  margin-bottom:30px;
}

.radio-card{
  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,215,0,0.08);

  border-radius:18px;

  padding:25px;

  cursor:pointer;

  transition:0.3s ease;
}

.radio-card:hover{
  border-color:gold;

  transform:translateY(-4px);
}

.radio-card input{
  margin-right:10px;
}

/* PAYMENT */
.payment-box{
  display:none;

  background:
  rgba(255,215,0,0.05);

  border:
  1px solid rgba(255,215,0,0.1);

  border-radius:18px;

  padding:20px;

  margin-bottom:25px;
  
  word-break:normal;
  
  text-align:left;

  overflow-wrap:normal;
  
  

  overflow:hidden;
  
  
}

.payment-box h4{
  margin-bottom:10px;
  color:gold;
}

/* REVIEW */
.review-box{
  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,215,0,0.08);

  border-radius:18px;

  padding:25px;

  margin-bottom:30px;
}

.review-item{
  display:flex;
  justify-content:space-between;

  margin-bottom:18px;
}

/* BUTTONS */
.buttons{
  display:flex;
  justify-content:space-between;

  gap:15px;
}

.next-btn,
.back-btn-form,
.submit-btn{

  height:52px;

  border:none;

  border-radius:16px;

  padding:0 24px;

  cursor:pointer;

  font-weight:600;

  transition:0.3s ease;
}

.next-btn,
.submit-btn{
  background:gold;
  color:black;
}

.back-btn-form{
  background:
  rgba(255,255,255,0.05);

  color:white;
}

.next-btn:hover,
.submit-btn:hover{

  transform:translateY(-3px);

  box-shadow:
  0 10px 20px rgba(255,215,0,0.2);
}

/* MOBILE */
@media(max-width:700px){

  .form-card{
    margin:30px 15px;
    padding:25px;
  }

  .steps{
    gap:10px;
  }

  .step span{
    font-size:11px;
  }

  .radio-grid{
    grid-template-columns:1fr;
  }

  .form-step h2{
    font-size:26px;
  }

}

.success-screen{
  text-align:center;
  padding:60px 20px;
}

.success-icon{
  width:100px;
  height:100px;

  border-radius:50%;

  margin:auto auto 30px;

  background:gold;

  color:black;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:40px;

  box-shadow:
  0 0 30px rgba(255,215,0,0.3);
}

.success-screen h2{
  margin-bottom:15px;
}

.success-screen p{
  color:#999;
  max-width:500px;
  margin:auto;
}

#copyBtn{
  margin-top:15px;

  height:42px;

  border:none;

  border-radius:12px;

  background:gold;
  color:black;

  padding:0 18px;

  cursor:pointer;

  font-weight:600;
}

.security-info{
  display:flex;
  flex-direction:column;

  gap:15px;

  margin-bottom:30px;
}

.security-badge{
  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,215,0,0.08);

  border-radius:14px;

  padding:14px 16px;

  color:#ddd;

  display:flex;
  align-items:center;

  gap:12px;
}

.security-badge i{
  color:gold;
}

/* PAYMENT HEADER */
.payment-header{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:12px;
}

/* COPY ICON */
#copyBtn{
  color:gold;
  background: transparent;

  cursor:pointer;

  font-size:18px;

  transition:0.3s ease;
}

/* HOVER */
#copyBtn:hover{

  transform:scale(1.12);

  color:#ffd700;

  text-shadow:
  0 0 12px rgba(255,215,0,0.4);
}

/* ADDRESS */
#paymentAddress{
  word-break: normal;

  color:#ddd;

  line-height:1.6;
}


/* SIMPLE FOOTER */
.booking-footer{

  padding:25px 20px;

  text-align:center;

  border-top:
  1px solid rgba(255,215,0,0.08);

  background:#080808;

  margin-top:60px;
}

/* TEXT */
.booking-footer p{

  color:#B8B8B8;

  font-size:14px;

  letter-spacing:0.3px;
}

#radio:hover{

  transform:scale(1.12);

  color:#ffd700;

  text-shadow:
  0 0 12px rgba(255,215,0,0.4);
}

.right{
  float: right;
}


a,
button,
input,
textarea,
select {
  
  -webkit-tap-highlight-color: transparent;
  outline: none;
  
}

a:focus,
a:active,
button:focus,
button:active {
  
  outline: none;
  
}
.radio-card,
.radio-card * {

  -webkit-tap-highlight-color: transparent;

  outline: none;

}