* {
  box-sizing: border-box;
}

.business-section {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;

}

.visible {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.visible.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ff62ea;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-section h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: #fafafa;
}

.business-section > p {
  max-width: 660px;
  margin: 22px auto 0;
  color: #f5f5f5;
  font-size: 1.05rem;
  line-height: 1.7;
}

.reservation-box {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 34px;
  border: 1px solid rgba(255, 98, 234, 0.35);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 30px rgba(255, 98, 234, 0.12);
}

.reservation-box h3 {
  margin: 0 0 28px;
  color: #fafafa;
  font-size: 1.7rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 24px;
  border-radius: 20px;
  background: #fafafa;
  text-align: left;
}

.step-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff62ea;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-card p {
  margin: 0;
  color: #000;
  line-height: 1.5;
}

.booking-box {
  max-width: 700px;
  margin: 50px auto 0;
  padding: 34px;
  border-radius: 28px;
  background: #fafafa;
  text-align: left;
  box-shadow: 0 20px 50px rgba(55, 32, 67, 0.18);

}

.booking-box h3 {
  margin: 0 0 28px;
  color: #000;
  font-size: 1.7rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 90%;
  padding: 13px 14px;
  border: 1px solid #ded6df;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  background: #fafafa;
  color: #000;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff62ea;
  box-shadow: 0 0 0 3px rgba(255, 98, 234, 0.15);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.food-option {
  margin: 20px 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 98, 234, 0.08);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: #ff62ea;
}

.food-box {
  display: none;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #f5f1f6;
}

.food-box.active {
  display: block;
}

.booking-form .btn30 {
  width: 50%;
  margin: 24px 0 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.booking-message {
  margin: 18px 0 0;
  color: #000;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

.btn30 {
  margin: 2rem auto;
  background: transparent;
  color: #fafafa;
  border: 2px solid #ff62ea;
  box-shadow: 0 0 10px #ff62ea;
  animation: neon-border 1.5s infinite alternate;
  padding: 10px 40px;
  border-radius: 6px;
  letter-spacing: 3px;
  position: relative;
  cursor: pointer;

}

@keyframes neon-border {
  from {
    box-shadow: 0 0 5px #ff62ea;
  }

  to {
    box-shadow: 0 0 10px #ff62ea, 0 0 30px #ff62ea;
  }
}

.dowload {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  gap: 1rem;
  text-decoration: none;
}

@media (max-width: 820px) {
  .business-section {
    padding: 50px 16px;
  }

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

  .reservation-box,
  .booking-box {
    padding: 24px;
    margin-top: 40px;
  }

  .form-row {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .business-section h2 {
    font-size: 2.3rem;
  }

  .business-section > p {
    font-size: 0.95rem;
  }

  .reservation-box h3,
  .booking-box h3 {
    font-size: 1.35rem;
  }

  .step-card {
    padding: 18px;
  }

  .booking-box {
    padding: 20px;
  }
}
