* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: linear-gradient(135deg, #020617, #1e293b);
  min-height: 100vh;
  

}
.main-wrapper{
display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0px;
  min-height: 100vh;
}

.title {
  color: white;
  margin-bottom: 20px;
  font-size: 48px;
}

.wrapper {
  width: 100%;
  /* max-width: 900px; */
  padding: 20px 40px;
}

.card {
  background: white;
  /* border-radius: 24px; */
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.card h2{
  margin-bottom:10px;
}


/* Progress (pure responsive math) */
.progress-container {
  position: relative;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 800px;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #e5e7eb;
  transform: translateY(-50%);
  border-radius: 6px;
}

.progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  transform: translateY(-50%);
  border-radius: 6px;
  width: 0%;
  transition: 0.4s;
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  font-weight: bold;
  z-index: 1;
}

.step.active {
  background: #6366f1;
  color: white;
}

/* Form */
.form-step { display: none; }
.form-step.active { display: block; }

.form-step h2{
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid label{
  margin-top: 0px !important ;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 16px;
  display: block;
}

input, select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

#qty-select{
    width: auto;
}
.qty .btn{
    margin-top:0
}

.step-one-form-button{
    width:auto;
    display: flex;
    justify-content: center;

}

.btn {
  width: auto;
  margin-top: 16px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  color: white;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

/* Hotel */
.hotel-card {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 20px;
}

.hotel-card img {
  width: 180px;
  border-radius: 12px;
}

.hotel-info { flex: 1; }

.muted { color: #64748b; }
.price { font-size: 1.3rem; font-weight: bold; }

/* Quantity */
.qty { position: relative; width: 100%; margin: 10px 0; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.qty-content{
  display: flex;
  flex-direction: column ;
  /* width: 100%; */
  justify-content: space-between;
}
.qty-content select
{
  width: 100%;
}

.qty-display {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
}

.qty-options {
  position: absolute;
  top: 110%;
  width: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
}

.qty-options div {
  padding: 10px;
  cursor: pointer;
}

.qty-options div:hover {
  background: #f1f5f9;
}

/* Summary */
.summary {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
}

.lorem {
  margin: 20px 0;
  color: #475569;
}
.pay-button{
    display: flex;
    justify-content: center;

}
.pay {
  display: block;
  text-align: center;
  padding: 14px;
  background: #22c55e;
  color: white;
  text-decoration: none;
  border:1px solid #22c55e;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.pay-button a{
    text-decoration: none !important;
   cursor: pointer;
}

/* thank you page */
.thank-you-main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #020617, #1e293b);
  padding: 40px 20px;
}
.thank-wrapper {
  text-align: center;
  background-color: #fff;
   width: 100%;
  max-width: 900px;
  padding: 2rem;
  /* border-radius: 24px; */

}

.thank-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  color: white;
  font-size: 3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.thank-wrapper h2 {
  margin-bottom: 0.5rem;
}

.thank-wrapper p {
  color: #94a3b8;
  margin-bottom: 2rem;
}


@media(min-width: 1360px) and (max-width: 1440px) {
    .main-wrapper{
        padding: 10px 20px;
        min-height: 100vh;
    
    }
    .wrapper {
        padding: 10px;
    }
    .progress-container{
        margin-bottom: 8px;
    }
    .title{
        margin-bottom: 10px;
    }
    .card {
        padding: 20px 24px;
    }
    input, select {
        padding: 10px;
    }

  
}

@media (min-width:768px) and (max-width: 1360px) {
  .main-wrapper{
        padding: 5px 20px;
        min-height: 100vh;
    }
    .wrapper {
        padding: 10px;
    }
    .card {
        padding: 15px 20px;
    }
    .title{
        margin-bottom: 5px;
    }
    input, select {
        padding: 6px;
    }
    label{
        margin-top:10px
    }
    .progress-container{
        margin-bottom: 10px;
    }
    .grid {
        gap: 10px;
    }   
}


/* Mobile */
@media (max-width: 576px) {
  .grid { grid-template-columns: 1fr; }
  .hotel-card { flex-direction: column; }
  .title { font-size: 25px; }
  .summary{
    flex-direction: column;
    gap: 20px;
  }
}


@media (max-width: 480px) {
  .qty{
    flex-direction: column;
    align-items: stretch;
  }
}