

:root {
  --moov-primary: #d2a34a;
  --moov-primary-deep: #07213f;
  --moov-secondary: #07213f;
  --moov-secondary-deep: #07213f;
  --moov-line: rgba(11, 59, 130, 0.10);
  --moov-muted: rgba(74, 74, 74, 0.68);
  --moov-radius-md: 16px;
  --moov-radius-lg: 20px;
  --moov-shadow-soft: 0 10px 30px rgba(11, 59, 130, 0.08);
  --moov-shadow-hover: 0 20px 44px rgba(11, 59, 130, 0.16);
  --moov-ease: cubic-bezier(.22, 1, .36, 1);
}

/* -------------------------------------------------------------------------
   1. PAGE BANNER (breadcrumb hero) — compact variant of .vs_banner_slr
   ------------------------------------------------------------------------- */
.vs_page_banner {
  padding: 150px 0 70px;
  text-align: center;
      background: #07213f;
}

.vs_page_banner .vs_bnr_badge {
  margin-bottom: 18px;
  color: var(--moov-primary);
}

.vs_page_banner h1 {
  font-size: calc(15px + 1.7vw);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.vs_page_banner p {
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 22px;
}

.vs_breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 50px;
  margin: 0 auto;
}

.vs_breadcrumb .breadcrumb-item,
.vs_breadcrumb .breadcrumb-item a {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.vs_breadcrumb .breadcrumb-item a:hover {
  color: var(--moov-secondary);
}

.vs_breadcrumb .breadcrumb-item.active {
  color: var(--moov-primary);
  font-weight: 600;
}

.vs_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
  content: "/";
}


/* -------------------------------------------------------------------------
   2. INTRO / OVERVIEW TEXT BLOCK (used at top of most inner pages)
   ------------------------------------------------------------------------- */
/*.vs_intro_block {
  max-width: 880px;
}
*/
.vs_intro_block p {
  /*font-size: 1.02rem;*/
  line-height: 1.85;
  color: var(--moov-muted);
}

.vs_intro_block p+p {
  margin-top: 1rem;
}

/* -------------------------------------------------------------------------
   3. TWO-COLUMN SERVICE PAGE LAYOUT (sticky sidebar pattern)
   ------------------------------------------------------------------------- */
.vs_service_layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}



.vs_service_sidebar {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--moov-line);
  border-radius: var(--moov-radius-lg);
  padding: 1.8rem;
  box-shadow: var(--moov-shadow-soft);
}

.vs_service_sidebar h5 {
  color: var(--moov-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.vs_service_sidebar_list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.vs_service_sidebar_list li {
  border-bottom: 1px solid var(--moov-line);
}

.vs_service_sidebar_list li:last-child {
  border-bottom: none;
}

.vs_service_sidebar_list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A4A4A;
  transition: color 0.25s var(--moov-ease), padding-left 0.25s var(--moov-ease);
}

.vs_service_sidebar_list a i {
  color: var(--moov-secondary);
  font-size: 0.85rem;
}

.vs_service_sidebar_list a:hover,
.vs_service_sidebar_list a.active {
  color: var(--moov-primary);
  padding-left: 6px;
}

.vs_service_sidebar_list a.active {
  font-weight: 700;
}

.vs_sidebar_cta {
  background: #07213f;
  border-radius: var(--moov-radius-md);
  padding: 1.5rem;
  text-align: center;
  color: #fff;
}

.vs_sidebar_cta i {
  font-size: 1.6rem;
  color: var(--moov-primary);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.vs_sidebar_cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 1rem;
}

/*.vs_sidebar_cta .vs_ctm_btn{
  width: 100%;
  justify-content: center;
  display: flex;
}*/

.vs_sidebar_cta .vs_ctm_btn i {
  font-size: 15px;
  color: #fff;
  margin-bottom: auto;
  display: inline-block;
}

/* -------------------------------------------------------------------------
   4. BENEFITS / FEATURE LIST (check-row pattern for service pages)
   ------------------------------------------------------------------------- */
.vs_check_row_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.vs_check_row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--moov-line);
  border-radius: var(--moov-radius-md);
  padding: 1.1rem 1.3rem;
  transition: transform 0.28s var(--moov-ease), box-shadow 0.28s var(--moov-ease), border-color 0.28s var(--moov-ease);
}

.vs_check_row:hover {
  transform: translateX(4px);
  box-shadow: var(--moov-shadow-soft);
  border-color: rgba(245, 130, 32, 0.35);
}

.vs_check_row_icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.12);
  color: var(--moov-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.vs_check_row h6 {
  color: var(--moov-primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
}

.vs_check_row p {
  font-size: 0.86rem;
  color: var(--moov-muted);
  line-height: 1.65;
  margin: 0;
}

/* -------------------------------------------------------------------------
   5. NUMBERED PROCESS LIST (compact, vertical — for service-page processes)
   ------------------------------------------------------------------------- */
.vs_steps_vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: vs-step;
}

.vs_steps_vertical li {
  position: relative;
  padding: 0 0 1.8rem 3.2rem;
  counter-increment: vs-step;
}

.vs_steps_vertical li::before {
  content: counter(vs-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--moov-primary);
  color: var(--moov-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs_steps_vertical li::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 2.4rem;
  bottom: 0;
  width: 2px;
  background: var(--moov-line);
}

.vs_steps_vertical li:last-child::after {
  display: none;
}

.vs_steps_vertical h6 {
  color: var(--moov-primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.vs_steps_vertical p {
  font-size: 0.9rem;
  color: var(--moov-muted);
  line-height: 1.7;
  margin: 0;
}

/* -------------------------------------------------------------------------
   6. CASE STUDY CARDS (Problem / Solution / Result)
   ------------------------------------------------------------------------- */
.vs_case_card {
  background: #fff;
  border: 1px solid var(--moov-line);
  border-radius: var(--moov-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.32s var(--moov-ease), box-shadow 0.32s var(--moov-ease);
}

.vs_case_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--moov-shadow-hover);
}

.vs_case_card_head {
  background: #07213f;
  padding: 1.6rem 1.8rem;
  position: relative;
}

.vs_case_tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 130, 32, 0.18);
  border: 1px solid rgba(245, 130, 32, 0.4);
  color: var(--moov-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.7rem;
}

.vs_case_card_head h4 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.vs_case_card_body {
  padding: 1.6rem 1.8rem 1.8rem;
}

.vs_case_block {
  margin-bottom: 1.1rem;
}

.vs_case_block:last-child {
  margin-bottom: 0;
}

.vs_case_block_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--moov-secondary);
  margin-bottom: 0.4rem;
}

.vs_case_block_label i {
  font-size: 0.85rem;
}

.vs_case_block p {
  font-size: 0.88rem;
  color: var(--moov-muted);
  line-height: 1.7;
  margin: 0;
}

.vs_case_block_result {
  background: rgba(11, 59, 130, 0.05);
  border-left: 3px solid var(--moov-secondary);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
}

.vs_case_block_result p {
  color: var(--moov-primary);
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   7. FAQ CATEGORY TABS (FAQ page grouping)
   ------------------------------------------------------------------------- */
.vs_faq_cat_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.vs_faq_cat_btn {
  background: #fff;
  border: 1px solid var(--moov-line);
  color: var(--moov-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  transition: all 0.28s var(--moov-ease);
  cursor: pointer;
}

.vs_faq_cat_btn:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-2px);
}

.vs_faq_cat_btn.active {
  background: linear-gradient(135deg, var(--moov-secondary) 0%, var(--moov-secondary-deep) 100%);
  border-color: transparent;
  color: #fff;
}

.vs_faq_category_group {
  margin-bottom: 3rem;
}

.vs_faq_category_group:last-child {
  margin-bottom: 0;
}

.vs_faq_category_heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.3rem;
}

.vs_faq_category_heading i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--moov-primary) 0%, var(--moov-primary-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vs_faq_category_heading h3 {
  color: var(--moov-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}

/* -------------------------------------------------------------------------
   8. CONTACT PAGE — map + office cards
   ------------------------------------------------------------------------- */
.vs_map_wrap {
  border-radius: var(--moov-radius-lg);
  overflow: hidden;
  box-shadow: var(--moov-shadow-soft);
  border: 1px solid var(--moov-line);
}

.vs_map_wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.vs_office_hours {
  background: #fff;
  border: 1px solid var(--moov-line);
  border-radius: var(--moov-radius-md);
  padding: 1.6rem 1.8rem;
}

.vs_office_hours h5 {
  color: var(--moov-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.vs_office_hours_row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--moov-line);
  font-size: 0.88rem;
}

.vs_office_hours_row:last-child {
  border-bottom: none;
}

.vs_office_hours_row span:first-child {
  color: #4A4A4A;
  font-weight: 500;
}

.vs_office_hours_row span:last-child {
  color: var(--moov-primary);
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   9. PAGE INTRO STATS ROW (compact reusable stat strip)
   ------------------------------------------------------------------------- */
.vs_inline_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 1.6rem;
}

.vs_inline_stats div {
  text-align: left;
}

.vs_inline_stats h3 {
  color: var(--moov-secondary);
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0;
  line-height: 1;
}

.vs_inline_stats span {
  font-size: 0.8rem;
  color: var(--moov-muted);
}

