/* ===== ORDER FORM + CONTACT US — Overlays ===== */

/* Overlay base */
.order-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1);
}
.order-overlay--open {
  opacity: 1; pointer-events: all;
}

/* Order Now container */
.order {
  width: 100%; max-width: 640px;
  padding: 0 24px;
  position: relative;
}

/* Close button */
.order__close {
  position: fixed; top: 20px; right: 24px; z-index: 210;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all 180ms ease;
}
.order__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Progress bar */
.order__progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 205;
  height: 3px; background: rgba(255,255,255,0.06);
}
.order__progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 2px 2px 0;
}

/* Step container */
.order__steps {
  position: relative;
  min-height: 400px;
}
.order__step {
  display: none;
  flex-direction: column;
  opacity: 0; transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.order__step--active {
  display: flex;
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
.order__step--exit {
  display: none;
  opacity: 0; transform: translateY(-30px);
  pointer-events: none;
}

/* Step labels */
.order__step-num {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.order__question {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.15;
  color: #fff; margin-bottom: 8px;
}
.order__hint {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 28px; line-height: 1.5;
}

/* ===== OPTION CARDS (package + designer) ===== */
.order__options {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.order__option {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 200ms ease;
  position: relative;
}
.order__option:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.order__option--selected {
  background: rgba(200,255,0,0.06);
  border-color: rgba(200,255,0,0.3);
}
.order__option--selected:hover {
  background: rgba(200,255,0,0.08);
}

/* Radio dot */
.order__opt-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms ease;
}
.order__option--selected .order__opt-radio {
  border-color: var(--accent);
  background: var(--accent);
}
.order__opt-radio::after {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--bg);
  opacity: 0; transition: opacity 200ms ease;
}
.order__option--selected .order__opt-radio::after { opacity: 1; }

.order__opt-content { flex: 1; min-width: 0; }
.order__opt-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 3px;
}
.order__opt-desc {
  font-size: 12px; color: rgba(255,255,255,0.45);
  line-height: 1.45;
}
.order__opt-price {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.order__opt-price-sub {
  display: block;
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* Package cards — top-aligned layout with includes list */
.order__option--pkg {
  align-items: flex-start;
  padding: 20px 22px;
}
.order__option--pkg .order__opt-radio { margin-top: 2px; }
.order__option--pkg .order__opt-price { margin-top: 2px; }

.order__pkg-includes {
  list-style: none;
  padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 4px;
}
.order__pkg-includes li {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.order__pkg-includes li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(200,255,0,0.35);
}

/* Enterprise consultation card */
.order__option--consult {
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
}
.order__option--consult:hover {
  border-color: rgba(200,255,0,0.25);
  background: rgba(200,255,0,0.04);
}
.order__option--consult .order__opt-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Designer availability badges */
.order__opt-badge {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  margin-top: 4px;
}
.order__opt-badge--open {
  background: rgba(80,200,120,0.12); color: #50c878;
}
.order__opt-badge--limited {
  background: rgba(255,180,0,0.12); color: #ffb400;
}

/* ===== TEXT INPUTS ===== */
.order__field { margin-bottom: 18px; }
.order__label {
  display: block;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.order__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 200ms ease;
  outline: none;
}
.order__input::placeholder { color: rgba(255,255,255,0.25); }
.order__input:focus {
  border-color: rgba(200,255,0,0.4);
  background: rgba(255,255,255,0.06);
}
textarea.order__input {
  resize: vertical; min-height: 100px;
}

/* ===== NAVIGATION BUTTONS ===== */
.order__nav {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
}
.order__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms ease;
  border: none;
}
.order__btn--next {
  background: var(--accent); color: var(--bg);
}
.order__btn--next:hover { background: #d4ff33; }
.order__btn--next:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.order__btn--back {
  background: transparent; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.order__btn--back:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* Keyboard hint */
.order__key-hint {
  font-size: 11px; color: rgba(255,255,255,0.2);
  margin-left: auto;
}
.order__key-hint kbd {
  display: inline-block;
  padding: 2px 6px; border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body); font-size: 10px;
  color: rgba(255,255,255,0.35);
}

/* ===== REVIEW STEP ===== */
.order__summary {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}
.order__summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.order__summary-label {
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.order__summary-value {
  font-size: 14px; font-weight: 600; color: #fff;
  text-align: right;
}
.order__summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.order__summary-total .order__summary-label {
  font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600;
}
.order__summary-total .order__summary-value {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; color: var(--accent);
}
.order__payment-note {
  font-size: 11px; color: rgba(255,255,255,0.35);
  line-height: 1.5; margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.order__payment-note strong { color: rgba(255,255,255,0.6); }

.order__btn--submit {
  background: var(--accent); color: var(--bg);
  width: 100%; justify-content: center;
  padding: 16px 28px; font-size: 14px;
}
.order__btn--submit:hover { background: #d4ff33; }

.order__summary-edit {
  font-size: 10px; color: rgba(255,255,255,0.25);
  text-decoration: underline; cursor: pointer;
  margin-left: 10px;
}
.order__summary-edit:hover { color: rgba(255,255,255,0.5); }

/* ===== CONFIRMATION STEP ===== */
.order__confirm {
  text-align: center;
  padding: 40px 0;
}
.order__confirm-icon {
  width: 64px; height: 64px;
  background: rgba(200,255,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.order__confirm-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.order__confirm-desc {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.6; max-width: 420px; margin: 0 auto;
}

/* ===== DISCLAIMER STEP ===== */
.order__disclaimer {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 0;
}
.order__disclaimer-icon {
  width: 56px; height: 56px;
  background: rgba(200,255,0,0.06);
  border: 1px solid rgba(200,255,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.order__disclaimer-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: #fff;
  margin-bottom: 24px;
}
.order__disclaimer-quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 0; border: none;
}
.order__disclaimer-body {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}
.order__disclaimer-check {
  display: inline-flex;
  align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
}
.order__disclaimer-check input {
  position: absolute;
  opacity: 0; width: 0; height: 0;
}
.order__disclaimer-checkbox {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms ease;
  flex-shrink: 0;
}
.order__disclaimer-check input:checked + .order__disclaimer-checkbox {
  border-color: var(--accent);
  background: var(--accent);
}
.order__disclaimer-check input:checked + .order__disclaimer-checkbox::after {
  content: '';
  width: 6px; height: 10px;
  border: solid var(--bg); border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.order__disclaimer-check-text {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 200ms ease;
}
.order__disclaimer-check input:checked ~ .order__disclaimer-check-text { color: #fff; }

/* ===== CONTACT US OVERLAY ===== */
.contact-overlay {
  align-items: stretch;
}
.contact {
  width: 100%; max-width: 640px;
  margin: 0 auto;
  height: 100vh;
  display: flex; flex-direction: column;
}
.contact__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 80px 24px 60px;
  -webkit-overflow-scrolling: touch;
}
.contact__scroll::-webkit-scrollbar { width: 4px; }
.contact__scroll::-webkit-scrollbar-track { background: transparent; }
.contact__scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.contact__section { margin-bottom: 20px; }
.contact__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 32px 0 40px;
}

/* FAQ Accordion */
.faq {
  display: flex; flex-direction: column;
  gap: 2px; margin-top: 20px;
}
.faq__item {
  border-radius: 12px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: #fff; text-align: left;
  transition: background 200ms ease;
}
.faq__question:hover { background: rgba(255,255,255,0.07); }
.faq__chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
}
.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.16,1,0.3,1);
}
.faq__item--open .faq__answer { max-height: 200px; }
.faq__answer p {
  padding: 0 18px 16px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.6; margin: 0;
}

/* Topic Pills */
.contact__topics {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.contact__topic {
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms ease;
}
.contact__topic:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}
.contact__topic--active {
  background: rgba(200,255,0,0.08);
  border-color: rgba(200,255,0,0.3);
  color: var(--accent);
}

/* Submit + Success */
.contact__submit { margin-top: 8px; }
.contact__success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ===== MOBILE ===== */
@media(max-width:767px) {
  .order { padding: 0 18px; }
  .order__question { font-size: 22px; }
  .order__option { padding: 14px 16px; gap: 12px; }
  .order__opt-price { font-size: 17px; }
  .order__key-hint { display: none; }
  .order__close { top: 14px; right: 16px; }
}
