/* Life Travels FAQ Widget */
.ltk-faq {
  --ltk-faq-accent: #0ea5e9;
  --ltk-faq-accent-dark: #0284c7;
  --ltk-faq-ink: #ffffff;
  --ltk-faq-text: rgba(255,255,255,.72);
  position: relative;
  overflow: hidden;
  background: #02051a;
  color: var(--ltk-faq-text);
  isolation: isolate;
}
.ltk-faq,
.ltk-faq * {
  box-sizing: border-box;
}
.ltk-faq a {
  text-decoration: none;
}
.ltk-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(14,165,233,.20), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(29,78,216,.18), transparent 36%),
    radial-gradient(circle at 52% 100%, rgba(14,165,233,.10), transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.ltk-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .10;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.ltk-faq__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ltk-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 58px;
  align-items: start;
}
.ltk-faq--stacked .ltk-faq__layout {
  grid-template-columns: 1fr;
}
.ltk-faq--stacked .ltk-faq__head {
  max-width: 820px;
}
.ltk-faq--center .ltk-faq__head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ltk-faq--right .ltk-faq__head {
  margin-left: auto;
  text-align: right;
}
.ltk-faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-bottom: 18px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--ltk-faq-accent);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ltk-faq__badge span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,.14);
  color: currentColor;
}
.ltk-faq__title {
  margin: 0;
  color: var(--ltk-faq-ink);
  font-size: clamp(36px, 5vw, 70px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.ltk-faq__title span {
  color: var(--ltk-faq-accent);
}
.ltk-faq__description {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ltk-faq-text);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}
.ltk-faq--center .ltk-faq__description {
  margin-left: auto;
  margin-right: auto;
}
.ltk-faq--right .ltk-faq__description {
  margin-left: auto;
}
.ltk-faq__items {
  display: grid;
  gap: 18px;
  width: 100%;
}
.ltk-faq-item {
  position: relative;
  overflow: hidden;
  padding: 6px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .32s ease, border-color .32s ease, box-shadow .32s ease, transform .32s ease;
}
.ltk-faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(14,165,233,.30), rgba(255,255,255,.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: .75;
}
.ltk-faq-item:hover,
.ltk-faq-item.is-open {
  transform: translateY(-2px);
  border-color: rgba(14,165,233,.34);
  background: rgba(255,255,255,.11);
  box-shadow: 0 30px 86px rgba(0,0,0,.26), 0 0 0 1px rgba(14,165,233,.08), inset 0 1px 0 rgba(255,255,255,.12);
}
.ltk-faq-item__button {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px;
  border: 0;
  border-radius: calc(24px - 6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.ltk-faq-item__button:focus-visible {
  outline: 2px solid var(--ltk-faq-accent);
  outline-offset: 3px;
}
.ltk-faq-item__meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ltk-faq-item__number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,.16);
  color: var(--ltk-faq-accent);
  border: 1px solid rgba(14,165,233,.18);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}
.ltk-faq-item__text {
  min-width: 0;
  display: grid;
  gap: 7px;
}
.ltk-faq-item__category {
  width: fit-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.ltk-faq-item__question {
  color: var(--ltk-faq-ink);
  font-size: 19px;
  line-height: 1.32;
  font-weight: 750;
  letter-spacing: -.025em;
}
.ltk-faq-item__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,.12);
  color: var(--ltk-faq-accent);
  border: 1px solid rgba(14,165,233,.16);
  font-size: 24px;
  line-height: 1;
  font-weight: 450;
  transition: background .28s ease, color .28s ease, transform .28s ease, border-color .28s ease;
}
.ltk-faq-item.is-open .ltk-faq-item__icon {
  background: var(--ltk-faq-accent);
  color: #ffffff;
  border-color: var(--ltk-faq-accent);
  transform: rotate(180deg);
}
.ltk-faq-item__answer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .26s ease;
}
.ltk-faq-item.is-open .ltk-faq-item__answer {
  opacity: 1;
}
.ltk-faq-item__answer-inner {
  padding: 0 18px 22px 82px;
  color: rgba(255,255,255,.76);
  font-size: 15.5px;
  line-height: 1.78;
  font-weight: 500;
}
.ltk-faq-item__answer-inner p {
  margin: 0 0 12px;
}
.ltk-faq-item__answer-inner p:last-child {
  margin-bottom: 0;
}
.ltk-faq-item__answer-inner ul,
.ltk-faq-item__answer-inner ol {
  margin: 12px 0 0 20px;
  padding: 0;
}
.ltk-faq-item__answer-inner a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .ltk-faq__layout {
    grid-template-columns: 1fr;
  }
  .ltk-faq__head {
    max-width: 820px;
  }
}
@media (max-width: 767px) {
  .ltk-faq__layout {
    gap: 34px;
  }
  .ltk-faq__head,
  .ltk-faq--right .ltk-faq__head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .ltk-faq__description,
  .ltk-faq--center .ltk-faq__description,
  .ltk-faq--right .ltk-faq__description {
    margin-left: 0;
    margin-right: 0;
  }
  .ltk-faq__title {
    font-size: clamp(34px, 12vw, 52px);
  }
  .ltk-faq-item {
    border-radius: 20px;
  }
  .ltk-faq-item__button {
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }
  .ltk-faq-item__meta {
    gap: 12px;
    align-items: flex-start;
  }
  .ltk-faq-item__number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    font-size: 12px;
  }
  .ltk-faq-item__question {
    font-size: 17px;
  }
  .ltk-faq-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    font-size: 22px;
  }
  .ltk-faq-item__answer-inner {
    padding-left: 66px;
    padding-right: 16px;
    padding-bottom: 20px;
    font-size: 14.5px;
  }
}
@media (max-width: 420px) {
  .ltk-faq__badge {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 11px;
  }
  .ltk-faq-item__meta {
    gap: 10px;
  }
  .ltk-faq-item__number {
    display: none;
  }
  .ltk-faq-item__answer-inner {
    padding-left: 16px;
  }
}


/* v22: Light glass style to match Life Travels white/blue pages */
.ltk-faq {
  background: #f7fbff;
  color: #526176;
}
.ltk-faq::before {
  background:
    radial-gradient(circle at 12% 0%, rgba(14,165,233,.16), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(2,132,199,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,255,.96));
  opacity: 1;
}
.ltk-faq::after {
  background-image:
    linear-gradient(rgba(14,165,233,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.08) 1px, transparent 1px);
  opacity: .12;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.ltk-faq__badge {
  background: rgba(255,255,255,.82);
  color: var(--ltk-faq-accent);
  border-color: rgba(14,165,233,.16);
  box-shadow: 0 16px 40px rgba(8,64,101,.08), inset 0 1px 0 rgba(255,255,255,.92);
}
.ltk-faq__badge span {
  background: rgba(14,165,233,.12);
}
.ltk-faq__title {
  color: #071326;
}
.ltk-faq__description {
  color: #526176;
}
.ltk-faq-item {
  background: rgba(255,255,255,.82);
  border-color: rgba(14,165,233,.14);
  box-shadow: 0 22px 60px rgba(8,64,101,.08), inset 0 1px 0 rgba(255,255,255,.95);
}
.ltk-faq-item::before {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(14,165,233,.24), rgba(255,255,255,.72));
  opacity: 1;
}
.ltk-faq-item:hover,
.ltk-faq-item.is-open {
  border-color: rgba(14,165,233,.28);
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 86px rgba(8,64,101,.12), 0 0 0 1px rgba(14,165,233,.06), inset 0 1px 0 rgba(255,255,255,.96);
}
.ltk-faq-item__number {
  background: rgba(14,165,233,.10);
  color: var(--ltk-faq-accent);
  border-color: rgba(14,165,233,.14);
}
.ltk-faq-item__category {
  background: rgba(14,165,233,.10);
  color: var(--ltk-faq-accent);
  border-color: rgba(14,165,233,.10);
}
.ltk-faq-item__question {
  color: #071326;
}
.ltk-faq-item.is-open .ltk-faq-item__question {
  color: #071326;
}
.ltk-faq-item__icon {
  background: rgba(14,165,233,.10);
  color: var(--ltk-faq-accent);
  border-color: rgba(14,165,233,.16);
}
.ltk-faq-item.is-open .ltk-faq-item__icon {
  background: var(--ltk-faq-accent);
  color: #ffffff;
  border-color: var(--ltk-faq-accent);
}
.ltk-faq-item__answer-inner {
  color: #526176;
}
.ltk-faq-item__answer-inner a {
  color: var(--ltk-faq-accent-dark);
}
@media (max-width: 767px) {
  .ltk-faq__layout {
    gap: 34px;
  }
}


/* v23: FAQ mobile alignment and responsive-control fixes */
@media (max-width: 767px) {
  .ltk-faq .ltk-faq-item__answer-inner,
  .ltk-faq .ltk-faq-item__answer-inner p,
  .ltk-faq .ltk-faq-item__answer-inner div,
  .ltk-faq .ltk-faq-item__answer-inner li {
    text-align: left;
  }

  .ltk-faq .ltk-faq-item__answer-inner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .ltk-faq .ltk-faq-item__answer-inner p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .ltk-faq .ltk-faq-item__text {
    width: 100%;
  }
}

/* Do not inherit center alignment from parent Elementor sections */
.ltk-faq .ltk-faq-item__answer-inner,
.ltk-faq .ltk-faq-item__answer-inner p {
  text-align: left;
}
