/* =================================================================
   MOOV INC ADVISORY — Property Query Desk
   Premium redesign pass — vs_ class convention
   Design tokens (colors, fonts, shadows) live in main_css.css :root
   ================================================================= */

::selection {
  background: var(--gold-light);
  color: var(--navy-deep);
}
:focus-visible {
  outline: 2px solid var(--royal-2);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.vs_wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.vs_eyebrow {
  
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-weight: 600;
}
.vs_eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: inline-block;
}
.vs_eyebrow.vs_on_dark {
  color: var(--gold-light);
}
.vs_eyebrow.vs_on_dark::before {
  background: linear-gradient(90deg, var(--gold-light), var(--royal-light));
}
h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ================= BUTTONS ================= */
.btn {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.22s ease, background 0.3s ease;
  white-space: nowrap;
}

/* Normal Button (Gold) */
.btn-primary {
  background: linear-gradient(
    120deg,
    var(--gold-deep) 0%,
    var(--gold) 55%,
    var(--gold-light) 100%
  );
  color: var(--navy-deep);
  box-shadow: 0 10px 26px -8px rgba(212, 168, 74, 0.45);
}

/* Hover Button (Blue) */
.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    120deg,
    var(--royal-2) 0%,
    var(--royal) 55%,
    var(--navy-3) 100%
  );
  color: #fff;
  box-shadow: 0 16px 34px -8px rgba(30, 79, 217, 0.6);
}

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

.btn-primary i {
  transition: transform 0.25s ease;
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 12.5px;
}

/* ================= HEADER ================= */
.vs_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}
.vs_header.vs_is_scrolled {
  padding: 13px 32px;
  background: rgba(5, 11, 28, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px -20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vs_logo img {
  width: 100px;
}

/* ================= HERO / SPLIT LAYOUT (structure preserved) ================= */
.vs_split {
  display: flex;
  align-items: flex-start;
}
.vs_hero_col {
  flex: 0 0 56%;
  max-width: 56%;
  min-height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  background: radial-gradient(
      1100px 700px at 82% -10%,
      rgba(47, 99, 240, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at -10% 110%,
      rgba(198, 162, 77, 0.16) 0%,
      transparent 55%
    ),
    linear-gradient(
      160deg,
      var(--navy-deep) 0%,
      var(--navy) 46%,
      var(--navy-2) 100%
    );
  padding: 0 5%;
  overflow: hidden;
}
.vs_hero_col::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.vs_content_col {
  flex: 0 0 44%;
  max-width: 44%;
  padding: 10vh 4% 8vh 4%;
  background: var(--paper);
}

.vs_parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}
.vs_map_outline {
  position: absolute;
  right: -12%;
  top: -4%;
  width: 520px;
  max-width: 74%;
  opacity: 0.16;
}
.vs_flight_dot {
  
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  opacity: 0.9;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px 9px 5px 7px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vs_flight_dot i {
  font-size: 8px;
  color: var(--gold-light);
}

.vs_float_orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  pointer-events: none;
  animation: vs_orbit 9s ease-in-out infinite;
}
@keyframes vs_orbit {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-16px) translateX(8px);
  }
}
.vs_orb_1 {
  width: 10px;
  height: 10px;
  background: var(--gold-light);
  left: 8%;
  top: 22%;
  box-shadow: 0 0 22px 4px rgba(232, 205, 132, 0.5);
}
.vs_orb_2 {
  width: 7px;
  height: 7px;
  background: var(--royal-light);
  right: 16%;
  top: 38%;
  box-shadow: 0 0 18px 4px rgba(92, 134, 255, 0.5);
  animation-delay: 1.4s;
}
.vs_orb_3 {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  left: 22%;
  bottom: 18%;
  box-shadow: 0 0 16px 3px rgba(232, 205, 132, 0.45);
  animation-delay: 2.6s;
}

.vs_hero_inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 21vh 0 6vh;
}
.vs_hero_inner h1 {
  font-size: clamp(30px, 3vw, 44px);
  color: #fff;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.vs_hero_inner h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.vs_hero_inner p.vs_lede {
  font-size: 15px;
  color: #b7c2de;
  max-width: 460px;
  margin-bottom: 26px;
}

/* ---- Premium consultation card (form) ---- */
.vs_form_card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  color: var(--ink);
  border-radius: 24px;
  padding: 32px 32px 26px;
  box-shadow: var(--shadow-lux), 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-top: 3px solid transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.97),
      rgba(255, 255, 255, 0.97)
    ),
    linear-gradient(120deg, var(--gold), var(--royal-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  max-width: 520px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vs_form_card_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.vs_form_card_head .vs_case_num {
  
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vs_form_card_head h3 {
  font-size: 19px;
  margin-top: 5px;
  font-weight: 600;
}
.vs_seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(198, 162, 77, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.vs_seal span {
  
  font-size: 7.5px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

form.vs_form .vs_field {
  margin-bottom: 16px;
}
form.vs_form .vs_field label {
  display: block;
  
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-soft);
  margin-bottom: 7px;
  font-weight: 600;
}
.vs_field textarea,
.vs_field input,
.vs_field select {
  width: 100%;
  font-family: var(--body);
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  resize: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.vs_field textarea:focus,
.vs_field input:focus,
.vs_field select:focus {
  outline: none;
  border-color: var(--royal-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 79, 217, 0.12);
}
.vs_field_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vs_form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 15px 20px;
  font-size: 14.5px;
}
.vs_form_foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.vs_form_foot_item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vs_form_foot_dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fa870;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(47, 168, 112, 0.18);
}

/* ================= CONTENT COLUMN (compact reference blocks) ================= */
.vs_block {
  margin-bottom: 72px;
}
.vs_block:last-child {
  margin-bottom: 0;
}
.vs_block h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 12px;
}
.vs_block h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.vs_block > p.vs_block_intro {
  font-size: 13.5px;
  color: var(--text-soft);
  max-width: 440px;
  margin-bottom: 20px;
}

/* Stats */
.vs_stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vs_stat_card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  flex: 1 1 auto;
  min-width: 130px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.vs_stat_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.vs_stat_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lux);
}
.vs_stat_card:hover::before {
  opacity: 1;
}
.vs_stat_card i {
  font-size: 17px;
  color: var(--royal);
  margin-bottom: 8px;
  display: block;
}
.vs_stat_num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.vs_stat_label {
  
  font-size: 9.5px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-top: 3px;
  text-transform: uppercase;
}

/* FAQ accordion */
.vs_faq_list {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.vs_faq_item {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.vs_faq_item:last-child {
  border-bottom: none;
}
.vs_faq_item summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}
.vs_faq_item summary:hover {
  background: var(--paper-2);
}
.vs_faq_item summary::-webkit-details-marker {
  display: none;
}
.vs_faq_toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.4px solid var(--royal);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.vs_faq_toggle::before,
.vs_faq_toggle::after {
  content: "";
  position: absolute;
  background: var(--royal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
.vs_faq_toggle::before {
  width: 9px;
  height: 1.4px;
}
.vs_faq_toggle::after {
  width: 1.4px;
  height: 9px;
}
.vs_faq_item[open] .vs_faq_toggle {
  background: var(--royal);
  transform: rotate(180deg);
}
.vs_faq_item[open] .vs_faq_toggle::before,
.vs_faq_item[open] .vs_faq_toggle::after {
  background: #fff;
}
.vs_faq_item[open] .vs_faq_toggle::after {
  opacity: 0;
}
.vs_faq_answer {
  padding: 0 18px 18px;
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Trust chips */
.vs_trust_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vs_trust_card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-soft);
}
.vs_trust_card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(198, 162, 77, 0.35),
    transparent 70%
  );
}
.vs_trust_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lux);
}
.vs_trust_card i {
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: block;
}
.vs_trust_title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vs_trust_desc {
  font-size: 11.5px;
  color: #aeb9d6;
  line-height: 1.4;
}

/* Testimonials */
.vs_testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vs_testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lux);
}
.vs_testimonial:last-child {
  margin-bottom: 0;
}
.vs_testimonial_icon {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}
.vs_testimonial p {
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.4;
}
.vs_testimonial_source {
  
  font-size: 10px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.03em;
}
.vs_testimonial_flag {
  font-size: 14px;
}

/* Process timeline */
.vs_process {
  display: flex;
  gap: 6px;
  position: relative;
  padding-top: 4px;
}
.vs_process::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 11%;
  right: 11%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  opacity: 0.35;
}
.vs_process_step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.vs_process_num {
  
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--royal-2), var(--navy-3));
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 4px 10px rgba(30, 79, 217, 0.35);
}
.vs_process_label {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.3;
  font-weight: 600;
}

.vs_cta_box {
  background: #fff;
  border: 1.5px dashed var(--gold-deep);
  border-radius: 16px;
  padding: 22px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.vs_cta_box p {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}

/* ================= FINAL CTA ================= */
.vs_final_cta {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-3) 55%,
    var(--navy) 100%
  );
  color: #fff;
  text-align: center;
  padding: 96px 0;
  overflow: hidden;
}
.vs_final_cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      700px 400px at 20% 20%,
      rgba(198, 162, 77, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 80% 80%,
      rgba(47, 99, 240, 0.28),
      transparent 60%
    );
}
.vs_final_cta .vs_final_orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.vs_final_orb_1 {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: -90px;
  left: -60px;
}
.vs_final_orb_2 {
  width: 320px;
  height: 320px;
  background: var(--royal);
  bottom: -120px;
  right: -80px;
}
.vs_final_cta .vs_wrap {
  position: relative;
  z-index: 2;
}
.vs_final_cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 42px);
  max-width: 680px;
  margin: 0 auto 16px;
  font-weight: 600;
}
.vs_final_cta p {
  color: #b7c2de;
  font-size: 15px;
  margin-bottom: 30px;
}
.vs_cta_row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.vs_final_cta .btn-primary {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 14px 32px -8px rgba(198, 162, 77, 0.5);
}
.vs_final_cta .btn-primary:hover {
  background: #fff;
  color: var(--navy-deep);
  transform: translateY(-3px);
}

footer {
  background: var(--navy-deep);
  color: #8c96ae;
  padding: 38px 0 24px;
  font-size: 12.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.vs_footer_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold-light);
}
footer a:hover {
  color: #fff;
}

/* ---------- mobile sticky bar ---------- */
.vs_mobile_cta {
  display: none;
}


