* {
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

/* Hero Section */
.hero-section {
  height: 50vh;
  /* background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%); */
  background-image: url("./background.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Decorative elements */
.decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.decoration:nth-child(1) {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  top: 20px;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.decoration:nth-child(2) {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  top: 50px;
  right: 15%;
  animation: float 4s ease-in-out infinite reverse;
}

.decoration:nth-child(3) {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  bottom: 30px;
  left: 20%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Package Details Section */
.package-details {
  padding: 40px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 3px solid #f0f0f0;
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-text {
  text-align: center;
  margin-bottom: 35px;
}

.intro-text p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 15px auto;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.divider {
  text-align: center;
  font-size: 2rem;
  color: #ff9900;
  margin: 40px 0;
  font-weight: 300;
  letter-spacing: 5px;
}

.section-title {
  font-size: 1.8rem;
  color: #333;
  margin: 0 0 25px 0;
  font-weight: 700;
}

.party-details-section {
  margin-bottom: 40px;
}

.detail-item {
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.detail-title {
  font-size: 1.3rem;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.detail-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 25px;
}

.detail-sublist li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.detail-sublist li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.2rem;
}

.detail-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.deposit-section {
  padding: 30px;
  background: linear-gradient(135deg, #fff8e6 0%, #ffe6cc 100%);
  border-radius: 15px;
  margin-bottom: 35px;
  border: 2px solid #ff9900;
}

.deposit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 25px;
}

.deposit-list li {
  padding: 12px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 153, 0, 0.2);
}

.deposit-list li:last-child {
  border-bottom: none;
}

.deposit-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.3rem;
}

.pricing-section {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 35px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.pricing-section h2 {
  font-size: 2rem;
  color: #333;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.includes-note {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  font-weight: 500;
}

.included-section,
.extra-participants,
.important-notes {
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.included-section {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.included-section:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.important-notes {
  background: transparent;
}

.included-section h3,
.extra-participants h3,
.important-notes h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.included-list,
.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li,
.notes-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.included-list li:last-child,
.notes-list li:last-child {
  border-bottom: none;
}

.included-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.3rem;
}

.notes-list li:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.5rem;
}

.extra-participants {
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.extra-participants h3 {
  color: #333;
  margin: 0;
  font-size: 1.3rem;
}

.closing-message {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 15px;
  margin-bottom: 0;
}

.closing-message p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

/* Form Section */
.form-section {
  padding: 40px;
}

.form-title {
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

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

.required {
  color: #ff6b6b;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.char-counter {
  font-size: 0.8rem;
  color: #999;
  text-align: right;
  margin-top: 5px;
}

/* Radio button styles */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 25px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex: 1;
  justify-content: center;
}

.radio-option:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.radio-option input[type="radio"] {
  margin-right: 8px;
  accent-color: #000000;
}

.radio-option:has(input[type="radio"]:checked) {
  background: #ff9900;
  color: white;
  border-color: #ff9900;
}
/* Submit button */
.submit-section {
  margin-top: 40px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Desktop adaptation */
@media (min-width: 768px) {
  .container {
    width: 80%;
  }

  .hero-section {
    height: 50vh;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .package-details {
    padding: 60px;
  }

  .intro-text p {
    font-size: 1.25rem;
  }

  .divider {
    margin: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .detail-item {
    padding: 30px;
  }

  .deposit-section {
    padding: 40px;
  }

  .perfect-for-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ready-to-book-section {
    padding: 50px;
  }

  .faq-section {
    padding: 80px 60px;
  }

  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .pricing-section {
    padding: 40px;
  }

  .pricing-section h2 {
    font-size: 2.5rem;
  }

  .included-section,
  .extra-participants,
  .important-notes {
    padding: 40px;
  }

  .form-section {
    padding: 60px;
  }

  /* Row 1: Parent Name */
  .row-1 {
    grid-template-columns: 1fr;
  }

  /* Row 2: Phone + Email */
  .row-2 {
    grid-template-columns: 1fr 1fr;
  }

  /* Row 3: Child Name + Event Date */
  .row-3 {
    grid-template-columns: 1fr 1fr;
  }

  /* Row 4: Time Slot */
  .row-4 {
    grid-template-columns: 1fr;
  }

  .time-slot-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
  }

  .time-slot-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    justify-content: center;
  }

  .time-slot-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .time-slot-option input[type="radio"] {
    margin-right: 10px;
    accent-color: #ff9900;
    width: 18px;
    height: 18px;
  }

  .time-slot-option:has(input[type="radio"]:checked) {
    background: #ff9900;
    color: white;
    border-color: #ff9900;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  }

  .time-slot-label {
    font-weight: 600;
    font-size: 1rem;
  }

.party-schedule-section {
  padding: 30px;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  border-radius: 15px;
  margin-bottom: 25px;
  border: 2px solid #ff9900;
}

.party-schedule-section h2,
.party-schedule-section h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: 700;
}

  .party-schedule-section > p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.6;
  }

  .schedule-details {
    margin-top: 15px;
  }

  .schedule-details p {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
  }

  .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

.schedule-list li {
  padding: 10px 15px;
  background: white;
  border-radius: 8px;
  color: #555;
  font-size: 1rem;
  border-left: 4px solid #ff9900;
}

.booking-note {
  margin-top: 20px;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  text-align: center;
}

.perfect-for-section {
  margin-bottom: 35px;
}

.perfect-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.perfect-for-list li {
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  color: #555;
  font-size: 1rem;
  border-left: 4px solid #ff9900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.perfect-for-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ready-to-book-section {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
  border-radius: 15px;
  margin-bottom: 0;
  color: white;
}

.ready-to-book-section .section-title {
  color: white;
  margin-bottom: 15px;
}

.ready-to-book-section p {
  font-size: 1.2rem;
  color: white;
  margin: 10px 0;
  line-height: 1.6;
}

.book-early-note {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.95;
  margin-top: 15px;
}

  /* Row 5: Participant Count */
  .row-5 {
    grid-template-columns: 1fr;
  }

  /* Row 6: Under 4 children */
  .row-6 {
    grid-template-columns: 1fr;
  }

  /* Row 7: Additional Notes */
  .row-7 {
    grid-template-columns: 1fr;
  }

  .decoration:nth-child(1) {
    width: 150px;
    height: 150px;
  }

  .decoration:nth-child(2) {
    width: 120px;
    height: 120px;
  }

  .decoration:nth-child(3) {
    width: 100px;
    height: 100px;
  }
}

/* Large screen optimization */
@media (min-width: 1200px) {
  .form-section {
    padding: 80px;
  }
}

/* Mobile optimization */
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.5rem;
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .package-details {
    padding: 30px 20px;
  }

  .intro-text p {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .divider {
    margin: 30px 0;
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .detail-item {
    padding: 20px;
  }

  .detail-title {
    font-size: 1.1rem;
  }

  .deposit-section {
    padding: 20px;
  }

  .perfect-for-list {
    grid-template-columns: 1fr;
  }

  .ready-to-book-section {
    padding: 30px 20px;
  }

  .ready-to-book-section p {
    font-size: 1rem;
  }

  .faq-section {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span:first-child {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }

  .pricing-section {
    padding: 25px 20px;
  }

  .pricing-section h2 {
    font-size: 1.5rem;
  }

  .includes-note {
    font-size: 1rem;
  }

  .included-section,
  .extra-participants,
  .important-notes {
    padding: 20px;
  }

  .included-section h3,
  .extra-participants h3,
  .important-notes h3 {
    font-size: 1.2rem;
  }

  .included-list li,
  .notes-list li {
    font-size: 0.95rem;
    padding-left: 30px;
  }

  .closing-message {
    padding: 20px;
  }

  .closing-message p {
    font-size: 1rem;
  }

  .form-section {
    padding: 30px 20px;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .time-slot-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schedule-list {
    grid-template-columns: 1fr;
  }
}

/* Air Datepicker customization */
.air-datepicker {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.air-datepicker-cell.-selected- {
  background: #667eea;
}

.air-datepicker-cell.-selected-:hover {
  background: #5a6fd8;
}

.air-datepicker-cell--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.party-room-note {
  margin: 10px 0;
  padding: 15px;
  border-radius: 0 8px 8px 0;
}

.special-request-note {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.email-link {
  color: #ff9900;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.email-link:hover {
  color: #e68a00;
  text-decoration: underline;
}

.email-link:active {
  color: #cc7a00;
}

/* FAQ Section */
.faq-section {
  padding: 60px 40px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  margin-top: 40px;
}

.faq-title {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question span:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ff9900;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.1);
  transform-origin: center center;
  line-height: 1;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #ff9900;
  color: white;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 25px;
  overflow: hidden;
}

.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding: 20px 25px;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 15px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-refund-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  padding-left: 20px;
}

.faq-refund-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-refund-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.2rem;
}
