/* ============================================================
   Luxe Tribes — Build Your Trip Wizard
   wizard.css  |  v1.0.0
   Scope: .ltw-wizard  (all rules scoped to avoid Elementor conflicts)
   ============================================================ */

/* ── Reset inside wizard ── */
.ltw-wizard *,
.ltw-wizard *::before,
.ltw-wizard *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root variables ── */
.ltw-wizard {
  --gold:       #C8415B;
  --gold-light: #e8c97a;
  --navy:       #0D1B2A;
  --navy2:      #C8415B;
   --pink:      #C8415B;
  --navy3:      #1e2f45;
  --white:      #ffffff;
  --gray:       #F9F9F9;
  --off-white:  #f8f6f1;
  --border:     rgba(201,168,76,0.18);
  --border-mid: rgba(201,168,76,0.35);
  --text:       #1a1a1a;
  --muted:      #6b6b6b;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: transparent;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

/* ── Header ── */
.ltw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.ltw-brand {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink);
  flex-shrink: 0;
  text-transform: uppercase;
	font-family:"GT-Super-Display-Regular", Sans-serif;
}
.ltw-brand span { color: var(--navy); }

.ltw-step-label {
  font-size: 12px;
  color: var(--muted);
  font-family: sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Clickable step nav ── */
.ltw-steps-nav {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 4px;
  gap: 0;
}

.ltw-step-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: default;
  padding: 0 4px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s;
}

/* completed steps are clickable */
.ltw-step-btn.is-done {
  cursor: pointer;
  opacity: 0.7;
}
.ltw-step-btn.is-done:hover {
  opacity: 1;
}

/* current step */
.ltw-step-btn.is-active {
  opacity: 1;
  cursor: default;
}

.ltw-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: sans-serif;
  color: var(--muted);
  background: var(--white);
  transition: all 0.2s;
  flex-shrink: 0;
}

.ltw-step-btn.is-active .ltw-step-num {
  border-color: var(--pink);
  color: var(--pink);
  background: #fdf9ee;
}

.ltw-step-btn.is-done .ltw-step-num {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
  /* checkmark */
  font-size: 0;
  position: relative;
}
.ltw-step-btn.is-done .ltw-step-num::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.ltw-step-name {
  font-size: 10px;
  font-family: sans-serif;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ltw-step-btn.is-active .ltw-step-name {
  color: var(--pink);
  font-weight: 700;
}
.ltw-step-btn.is-done .ltw-step-name {
  color: var(--navy);
}

/* connecting line between steps */
.ltw-step-line {
  flex: 1;
  height: 2px;
  background: #e0ddd6;
  margin-bottom: 18px;
  min-width: 12px;
  transition: background 0.3s;
}
.ltw-step-line.is-done {
  background: var(--gold);
}

@media (max-width: 600px) {
  .ltw-step-name { display: none; }
  .ltw-step-btn { padding: 0 2px; }
}

/* ── Layout ── */
.ltw-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .ltw-layout {
    grid-template-columns: 1fr;
  }
  .ltw-sidebar {
    order: -1;
  }
}

/* ── Steps ── */
.ltw-step {
  display: none;
}
.ltw-step.is-active {
  display: block;
  animation: ltw-fadein 0.22s ease;
}
@keyframes ltw-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ltw-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ltw-step-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-family: sans-serif;
}

/* ── Destination image cards (Tenon style) ── */
.ltw-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) {
  .ltw-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

.ltw-img-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.14s, box-shadow 0.18s;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.ltw-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.75) 100%);
  transition: background 0.18s;
}
.ltw-img-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.ltw-img-card[aria-pressed="true"] {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.4);
}
.ltw-img-card[aria-pressed="true"]::after {
  background: linear-gradient(to bottom, rgba(201,168,76,0.12) 0%, rgba(0,0,0,0.72) 100%);
}

.ltw-img-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8px 10px 9px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* White square checkbox box */
.ltw-img-label::before {
  content: '';
  flex-shrink: 0;
  display: inline-flex;
  width: 25px;
  height: 25px;
  min-width: 16px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 3px;
  background: transparent;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}

/* tick via box-shadow trick — no background-image needed */
.ltw-img-card[aria-pressed="true"] .ltw-img-label::before {
  background: var(--gold);
  border-color: var(--gold);
  /* CSS-only checkmark using clip-path on a white pseudo */
  box-shadow: inset 0 0 0 2px var(--gold);
}

/* actual tick drawn on a nested element — use .ltw-img-check span for this */
.ltw-img-check {
  position: relative;
  z-index: 2;
  display: none;
}

/* Redraw: use the label::after for the tick line instead */
.ltw-img-label::after {
  content: '';
  position: absolute;
  left: 18px;   /* positions inside the ::before box */
  bottom: 16px;
  width: 9px;
  height: 16px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transition: border-color 0.15s;
  pointer-events: none;
}
.ltw-img-card[aria-pressed="true"] .ltw-img-label::after {
  border-color: #fff;
}

/* keep .ltw-check for other steps */
.ltw-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}
[aria-pressed="true"] .ltw-check { display: flex; }

/* ── Shared checkbox mixin ── */
.ltw-option-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  min-width: 20px;
  border: 2px solid #bbb;
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

/* tick — hidden by default */
.ltw-tick {
  display: block;
  width: 7px;
  height: 17px;
  border: 2.5px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: border-color 0.15s;
}

/* selected state */
.ltw-option-card[aria-pressed="true"] .ltw-option-checkbox {
  background-color: var(--gold);
  border-color: var(--gold);
}
.ltw-option-card[aria-pressed="true"] .ltw-tick {
  border-color: #fff;
}

/* center the select row */
.ltw-option-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid #f0ece4;
}
.ltw-option-select-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  font-family: sans-serif;
}
.ltw-option-card[aria-pressed="true"] .ltw-option-select-label {
  color: var(--gold);
}

/* ── Option grid (Travel Style + Accommodation) ── */
.ltw-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) {
  .ltw-option-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .ltw-option-grid { grid-template-columns: 1fr; }
}

.ltw-option-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e0ddd6;
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.14s;
  box-shadow: var(--shadow-sm);
  text-align: left;
  width: 100%;
  padding: 0;
}
.ltw-option-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ltw-option-card[aria-pressed="true"] {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
}

/* photo area */
.ltw-option-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #ccc;
  flex-shrink: 0;
}

/* text body */
.ltw-option-body {
  padding: 12px 12px 8px;
  flex: 1;
}
.ltw-option-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: Georgia, serif;
  margin-bottom: 5px;
  text-align: center;
}
.ltw-option-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  font-family: sans-serif;
  text-align: center;
}


/* ── Interest tags — now image cards same as destinations ── */
.ltw-interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin-bottom: 1.25rem;
}

/* hide old style/interest/budget check spans */
.ltw-style-card .ltw-check,
.ltw-interest-tag .ltw-check,
.ltw-budget-card .ltw-check,
.ltw-style-card::before,
.ltw-interest-tag::before,
.ltw-budget-card::before { display: none !important; }

/* ── Budget cards ── */
.ltw-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 1.25rem;
}
@media (max-width: 500px) {
  .ltw-budget-grid { grid-template-columns: 1fr 1fr; }
}

.ltw-budget-card {
  border: 1.5px solid #e0ddd6;
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  cursor: pointer;
  text-align: center;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.ltw-budget-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.ltw-budget-card[aria-pressed="true"] {
  border-color: var(--gold);
  background: #fdf9ee;
}
.ltw-budget-card[aria-pressed="true"] .ltw-option-checkbox {
  background-color: var(--gold);
  border-color: var(--gold);
}
.ltw-budget-card[aria-pressed="true"] .ltw-tick {
  border-color: #fff;
}

/* checkbox + amount side by side */
.ltw-budget-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ltw-budget-amt {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  font-family: sans-serif;
}
.ltw-budget-note {
  font-size: 11px;
  color: var(--muted);
  font-family: sans-serif;
}



/* ── Contact form ── */
.ltw-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .ltw-form-row { grid-template-columns: 1fr; }
}

.ltw-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 2px;
}
.ltw-form-group label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ltw-form-group input,
.ltw-form-group select,
.ltw-form-group textarea {
  border: 0.5px solid #d0ccc4;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px;
  font-family: sans-serif;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.ltw-form-group input:focus,
.ltw-form-group select:focus,
.ltw-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.12);
}
.ltw-form-group textarea {
  resize: vertical;
  min-height: 72px;
}

/* ── Buttons ── */
.ltw-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.ltw-btn-next,
.ltw-btn-submit {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  border: none;
  background: #040F18;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: sans-serif;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.1s;
}
.ltw-btn-next:hover,
.ltw-btn-submit:hover {
  background: var(--navy2);
}
.ltw-btn-next:active,
.ltw-btn-submit:active {
  transform: scale(0.98);
}
.ltw-btn-next:disabled,
.ltw-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ltw-btn-back {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 0.5px solid #d0ccc4;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: sans-serif;
  transition: border-color 0.15s, color 0.15s;
}
.ltw-btn-back:hover {
  border-color: var(--gold);
  color: var(--navy);
}

/* ── Errors / notes ── */
.ltw-err {
  font-size: 12px;
  color: #c0392b;
  font-family: sans-serif;
  margin-bottom: 8px;
  display: none;
}
.ltw-err.is-visible { display: block; }

.ltw-note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  font-family: sans-serif;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ── Success screen ── */
.ltw-success {
  text-align: center;
  padding: 2rem 1rem;
}
.ltw-success-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 1rem;
}
.ltw-success-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.ltw-success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  font-family: sans-serif;
}

.ltw-ai-preview {
  border: 0.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin: 0 auto 1.5rem;
  max-width: 480px;
  text-align: left;
  background: #fdf9ee;
}
.ltw-ai-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: sans-serif;
}
.ltw-ai-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.75;
}

/* Next steps */
.ltw-next-steps {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  text-align: left;
}
.ltw-next-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: sans-serif;
  margin-bottom: 12px;
}
.ltw-next-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-family: sans-serif;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.5;
}
.ltw-next-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ltw-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid #25D366;
  border-radius: var(--radius-md);
  color: #25D366;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  font-family: sans-serif;
  transition: background 0.15s;
}
.ltw-whatsapp-btn:hover {
  background: rgba(37,211,102,0.07);
}

/* ── Sidebar ── */
.ltw-sidebar {
  position: sticky;
  top: 80px;  /* adjust for your sticky header height */
}

.ltw-summary-box {
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ltw-summary-header {
  background: var(--navy2);
  padding: 16px 18px;
}
.ltw-summary-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: sans-serif;
}
.ltw-summary-sub {
  font-size: 11px;
  color: rgba(255,255,255,1);
  margin-top: 2px;
  font-family: sans-serif;
}

.ltw-summary-body {
  padding: 12px 16px;
}

.ltw-sum-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--border);
}
.ltw-sum-row:last-child { border-bottom: none; }

.ltw-sum-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  /*background: var(--off-white);*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0;
}
.ltw-sum-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2px;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight:700;
}
.ltw-sum-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  font-family: sans-serif;
}
.ltw-sum-value.is-empty {
  color: #bbb;
  font-weight: 400;
  font-style: italic;
}

.ltw-inclusions {
  padding: 12px 16px 14px;
  background: var(--gray);
  border-top: 0.5px solid var(--border);
}
.ltw-inc-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-family: sans-serif;
}
.ltw-inc-item {
  font-size: 12px;
  color: var(--muted);
  font-family: sans-serif;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ltw-inc-item span {
  color: var(--gold);
  font-weight: 700;
}

/* ── Elementor compatibility ── */
.elementor-widget-html .ltw-wizard { padding: 0; }
.elementor-section .ltw-wizard { max-width: 100%; }
