/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
body { font-family: 'Open Sans', Arial, sans-serif; color: #333; background: #f8f8f6; font-size: 15px; line-height: 1.6; }

/* ===== HEADER ===== */
.ices-header {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.ices-header .logo a { display: flex; align-items: center; text-decoration: none; }
.ices-header .logo img { height: 62px; padding: 8px 0; display: block; }

/* ===== NAV ===== */
.ices-nav { display: flex; align-items: center; }
.ices-nav a {
  display: block;
  padding: 22px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
.ices-nav a:hover { color: #EC8A7D; }
.ices-nav .register-btn {
  background: #EC8A7D;
  color: #fff !important;
  padding: 9px 22px;
  margin-left: 10px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.ices-nav .register-btn:hover { background: #d4756b; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== PAGE TITLE BANNER ===== */
.page-title-banner {
  background: #f0eeeb;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #e0ddd8;
}
.page-title-banner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #222;
}
.page-title-banner p { margin-top: 8px; font-size: 13px; color: #777; }

/* ===== STEP INDICATOR ===== */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
  background: #f0eeeb;
  border-bottom: 1px solid #e0ddd8;
}
.step-indicator .step {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
}
.step-indicator .step.active { color: #EC8A7D; }
.step-indicator .step.done { color: #EC8A7D; }
.step-indicator .step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-right: 7px;
}
.step-indicator .step.active .step-num { background: #EC8A7D; }
.step-indicator .step.done .step-num { background: #EC8A7D; }
.step-indicator .step-divider { width: 40px; height: 1px; background: #ddd; margin: 0 10px; align-self: center; }

/* ===== MAIN WRAPPER ===== */
#main { max-width: 860px; margin: 0 auto; padding: 30px 20px 60px; }

/* ===== FORM CARD ===== */
.form-block-wrapper {
  background: #fff;
  padding: 32px 36px;
  border-radius: 6px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  margin-bottom: 24px;
}

/* ===== OR DIVIDER ===== */
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 6px 0 16px;
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid #e5e5e5;
}
.or-divider span { padding: 0 14px; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: #EC8A7D;
  padding: 9px 16px;
  margin: 24px -36px 18px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== FORM ROWS ===== */
.set-row { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.set-row.two .set { flex: 1; min-width: 200px; }
.set-row.three .set { flex: 1; min-width: 150px; }
.set-row.three .set:last-child { flex: 2; }
.set { margin-bottom: 14px; }
.set .text { font-size: 12px; color: #666; margin-bottom: 5px; font-weight: 600; letter-spacing: 0.3px; }
.set .input input:not([type=radio]),
.set .input select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #333;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.set .input input::placeholder { color: #bbb; }
.set .input input:focus,
.set .input select:focus { outline: none; border-color: #EC8A7D; box-shadow: 0 0 0 3px rgba(236,138,125,0.1); }

/* ===== TICKET OPTIONS ===== */
.ticket-options { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.ticket-option {
  flex: 1;
  min-width: 220px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ticket-option:hover { border-color: #EC8A7D; box-shadow: 0 2px 8px rgba(236,138,125,0.15); }
.ticket-option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ticket-option input[type=radio]:checked {
  border-color: #EC8A7D;
  background: #EC8A7D;
  box-shadow: inset 0 0 0 3px #fff;
}
.ticket-option b { font-size: 14px; color: #222; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: #fdf3f2;
  border: 1px solid #f0c4be;
  border-radius: 5px;
  padding: 14px 18px;
  margin-bottom: 22px;
  text-align: center;
}
.promo-banner strong { font-size: 15px; color: #EC8A7D; display: block; margin-bottom: 4px; }
.promo-banner span { font-size: 13px; color: #666; }

/* ===== ORDER REVIEW (step2) ===== */
.review-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}
.review-row:last-of-type { border-bottom: none; }
.review-label { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; color: #869D9B; letter-spacing: 0.8px; min-width: 120px; }
.review-value { font-size: 14px; color: #333; flex: 1; }
.review-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; margin-top: 8px; border-top: 2px solid #f0f0f0; }
.review-total-label { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #333; }
.review-total-amount { font-size: 22px; font-weight: 700; color: #EC8A7D; }
.review-alert { background: #fff8e1; border-left: 4px solid #EC8A7D; padding: 10px 14px; border-radius: 0 4px 4px 0; font-size: 13px; color: #666; margin: 10px 0; }

/* ===== CONTENT (legacy step2 divs) ===== */
.content { padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 14px; }
.lb-review-wrapper .content { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===== BUTTONS ===== */
.zhubutton {
  background: #EC8A7D;
  border: none;
  color: #fff;
  padding: 10px 24px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  margin: 4px 2px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.zhubutton:hover { background: #d4756b; }
.zhubutton2 {
  background: #EC8A7D;
  border: none;
  color: #fff;
  padding: 6px 14px;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.zhubutton2:hover { background: #d4756b; }
.btn-row { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
input[type=submit] {
  background: #EC8A7D;
  color: #fff;
  border: none;
  padding: 13px 44px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  letter-spacing: 1.5px;
  transition: background 0.2s;
}
input[type=submit]:hover { background: #d4756b; }

/* ===== WARNING ===== */
.warning-block {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 12px 16px;
  border-radius: 5px;
  margin-bottom: 18px;
  font-size: 13px;
  display: none;
}

/* ===== BALANCE ===== */
input[name=totalcharge] {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  width: 110px;
}

/* ===== TOTAL CHARGE (step3) ===== */
.total-charge-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #EC8A7D;
  padding: 12px 0;
  margin-bottom: 8px;
}

/* ===== TERMS BOX ===== */
.terms-box {
  background: #f8f8f6;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.ices-footer { background: #869D9B; color: #fff; padding: 50px 40px 0; margin-top: 60px; }
.ices-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
}
.ices-footer-brand { flex: 1.5; min-width: 220px; }
.ices-footer-brand img { height: 55px; margin-bottom: 14px; display: block; }
.ices-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.ices-footer-col { flex: 1; min-width: 140px; }
.ices-footer-col h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.ices-footer-col a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; margin-bottom: 9px; }
.ices-footer-col a:hover { color: #fff; }
.ices-footer-col p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.ices-footer-bottom { background: #6e8482; padding: 16px 40px; }
.ices-footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.ices-footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.ices-footer-bottom a:hover { color: #fff; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .ices-header { padding: 0 20px; }
  #main { padding: 20px 15px 50px; }
  .form-block-wrapper { padding: 24px 20px; }
  .section-title { margin: 20px -20px 16px; padding: 9px 20px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .ices-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    border-top: 1px solid #ebebeb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .ices-nav.open { display: flex; }
  .ices-nav a { padding: 14px 24px; border-bottom: 1px solid #f5f5f5; font-size: 12px; }
  .ices-nav .register-btn { margin: 12px 24px; border-radius: 50px; text-align: center; background: #EC8A7D; }
  .set-row { flex-direction: column; gap: 0; }
  .set-row.two .set, .set-row.three .set { min-width: 100%; }
  .ticket-options { flex-direction: column; }
  .page-title-banner h1 { font-size: 20px; letter-spacing: 2px; }
  .step-indicator .step span { display: none; }
  .step-indicator .step-divider { width: 20px; }
  .ices-footer { padding: 40px 20px 0; }
  .ices-footer-inner { gap: 30px; }
  .ices-footer-brand, .ices-footer-col { min-width: 100%; }
  .ices-footer-bottom { padding: 16px 20px; }
  .ices-footer-bottom-inner { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .ices-header { padding: 0 15px; }
  .form-block-wrapper { padding: 20px 15px; }
  .section-title { margin: 20px -15px 16px; padding: 9px 15px; }
}
