﻿/* ==========================================================================
   SparkSupport Knowledge Base - Main Styles
   --------------------------------------------------------------------------
   - Brand tokens
   - Layout & global styles
   - Components (hero, product cards, support cards, FAQ, footer)
   - Success & Support hub and Contact page styles
   - Responsive tweaks
   ========================================================================== */

:root {
  --brand-purple: #35117a;
  --brand-purple-dark: #1f0f52;
  --brand-bg: #f1f6fb;
  --text-muted-custom: #666;
  --button-primary: #280669;
  --button-radius: 16px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--brand-bg);
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Header & navigation
   -------------------------------------------------------------------------- */

.navbar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 0.8rem;
}

/* Above sticky/fixed chrome (Bootstrap ~1020â€“1030); open menu must win stacking fights */
.dropdown-menu.show {
  z-index: 1040;
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-right: 0.4rem;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* Hero
   -------------------------------------------------------------------------- */

.hero {
  min-height: 530px;
  background:url("../images/banner.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 7.5rem 1rem 4.5rem;
  --banner-h1-size: clamp(2rem, 3vw, 3.1rem);
  --banner-h1-weight: 800;
  --banner-lead-size: clamp(0.97rem, 1vw, 1.22rem);
  --banner-lead-weight: 500;
}

.hero .subhead {
  font-size: var(--banner-lead-size);
  font-weight: var(--banner-lead-weight);
  opacity: 0.95;
}

.hero h1,
.hero-title {
  font-size: var(--banner-h1-size);
  font-weight: var(--banner-h1-weight);
  margin: 0.35rem 0 1.35rem;
  letter-spacing: -0.02em;
}

.hero-search {
  max-width: 560px;
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
}

.hero-search .form-control {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 0.78rem 1rem;
  font-size: var(--banner-lead-size);
  font-weight: var(--banner-lead-weight);
}

.hero-search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.hero-search .input-group-text {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.1rem;
  font-size: var(--banner-lead-size);
  font-weight: var(--banner-lead-weight);
}

/* Section headings
   -------------------------------------------------------------------------- */

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 0.35rem;
}

.section-caption {
  color: #6f6f6f;
  font-size: 0.9rem;
}

.btn,
button {
  border-radius: var(--button-radius) !important;
  font-size: 16px !important;
}

.btn-discover {
  background: var(--button-primary);
  color: #fff;
  border: 0;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.52rem 1.05rem;
  line-height: 1.25;
}

.btn-discover:hover {
  color: #fff;
  background: var(--button-primary);
  filter: brightness(1.08);
}

.btn-discover:focus-visible {
  color: #fff;
  background: var(--button-primary);
}

/* Support categories
   -------------------------------------------------------------------------- */

.support-category {
  background: linear-gradient(90deg, #170045 0%, #280065 52%, #500da4 100%);
  color: #fff;
  padding-top: 3.3rem !important;
  padding-bottom: 3rem !important;
}

.support-category .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem !important;
}

.support-category .section-caption-alt {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  font-weight: 400;
}

.support-card {
  background: linear-gradient(180deg, rgba(13, 2, 50, 0.88) 0%, rgba(14, 2, 57, 0.94) 100%);
  border: 1px solid rgba(107, 81, 225, 0.95);
  border-radius: 14px;
  padding: 0.8rem 0.72rem 0.86rem;
  height: 100%;
  min-height: 146px;
  box-shadow: 0 0 0 1px rgba(124, 98, 255, 0.22), 0 8px 24px rgba(66, 31, 177, 0.44);
}

.support-card .icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-size: 0.66rem;
}

.support-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.support-card p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
}


/* FAQ
   -------------------------------------------------------------------------- */

.faq-wrap {
  background: var(--brand-bg);
}

.faq-left-heading {
  font-size: clamp(1.55rem, 1vw + 1.1rem, 2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.faq-left-copy {
  color: var(--text-muted-custom);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 460px;
}

.barcode {
  display: inline-grid;
  grid-template-columns: repeat(18, 7px);
  gap: 2px;
  margin-top: 1.1rem;
}

.barcode span {
  height: 46px;
  border-radius: 2px;
  opacity: 0.9;
}

.barcode span:nth-child(1) { background: #0728ff; }
.barcode span:nth-child(2) { background: #2653ff; }
.barcode span:nth-child(3) { background: #5588ff; }
.barcode span:nth-child(4) { background: #7f7fff; }
.barcode span:nth-child(5) { background: #ac67ff; }
.barcode span:nth-child(6) { background: #d45eff; }
.barcode span:nth-child(7) { background: #ff5cc9; }
.barcode span:nth-child(8) { background: #ef3a9f; }
.barcode span:nth-child(9) { background: #d81e86; }
.barcode span:nth-child(10) { background: #b91671; }
.barcode span:nth-child(11) { background: #95155f; }
.barcode span:nth-child(12) { background: #74114b; }
.barcode span:nth-child(13) { background: #59103f; }
.barcode span:nth-child(14) { background: #450f34; }
.barcode span:nth-child(15) { background: #3b1742; }
.barcode span:nth-child(16) { background: #35215d; }
.barcode span:nth-child(17) { background: #293783; }
.barcode span:nth-child(18) { background: #1c4cb8; }

.accordion-item {
  border: 0;
  border-left: 2px solid #4a2a8a;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.9rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  background: #fff;
}

.accordion-button {
  font-weight: 700;
  font-size: 16px;
  color: #0C021D;
  background: #fff;
  box-shadow: none !important;
  padding: 1.35rem 1.5rem 0.8rem;
}

.accordion-button::after {
  background-image: none !important;
  content: "+";
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #43237f;
  width: auto;
  height: auto;
  transform: none !important;
}

.accordion-button:not(.collapsed) {
  color: #280669;
  background: #fff;
}

.accordion-button:not(.collapsed)::after {
  content: "\2212";
}

.accordion-body {
  color: #6f7080;
  font-size: 14px;
  line-height: 1.45;
  padding: 0.35rem 1.5rem 1.2rem;
}

/* Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #12072d;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 1.2rem;
}

.site-footer a:hover {
  color: #fff;
}

/* Responsive tweaks
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  .hero {
    min-height: 380px;
  }

  .btn-discover {
    font-size: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-wrap {
    padding-top: 0.55rem;
  }

  .hero {
    min-height: 355px;
    padding-top: 6.5rem;
  }

  .btn-discover {
    font-size: 0.95rem;
    padding: 0.58rem 1rem;
  }

  .site-footer a {
    margin-left: 0.8rem;
  }

  .support-category {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .support-card {
    min-height: 132px;
  }

  .support-card p {
    max-width: none;
  }
}

/* Shared inner layout shell (hero, nav, footer)
   -------------------------------------------------------------------------- */

.inner-page {
  --bg-page: #eef2f8;
  --hero-start: #130041;
  --hero-mid: #3f0f85;
  --hero-end: #7f2fa8;
  --text-dark: #111111;
  --line: #e4e5eb;
  --primary: #280669;
  --primary-2: #280669;
  margin: 0;
  background: var(--bg-page);
  color: var(--text-dark);
  font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
}

.inner-page .inner-container { max-width: 1240px; }
.inner-page .inner-hero { position: relative; overflow: hidden; background: linear-gradient(100deg, var(--hero-start) 0%, var(--hero-mid) 48%, var(--hero-end) 100%); min-height: 281px; }
.inner-page .hero-shape { position: absolute; pointer-events: none; border-radius: 999px; border: 1px solid rgba(208, 178, 255, 0.23); }
.inner-page .hero-shape-left { width: 720px; height: 720px; left: -380px; top: -300px; transform: rotate(24deg); }
.inner-page .hero-shape-right { width: 980px; height: 430px; right: -360px; top: -260px; background: radial-gradient(ellipse at center, rgba(255, 189, 255, 0.22) 0%, rgba(255, 189, 255, 0) 72%); }
.inner-page .hero-shape-bottom { width: 540px; height: 210px; left: 33%; bottom: -70px; border: 0; background: linear-gradient(120deg, rgba(195, 135, 255, 0.28), rgba(255, 159, 224, 0.18)); transform: skewX(-36deg); border-radius: 30px; }
.inner-page .navbar-wrap { position: relative; z-index: 3; padding-top: 1.15rem; }
.inner-page .brand-text { color: #fff; font-size: 1.06rem; letter-spacing: 0.02em; }
.inner-page .brand-text:hover, .inner-page .brand-text:focus { color: #fff; }
.inner-page .brand-mark { width: 1.15rem; height: 1.15rem; border: 2px solid #fff; border-radius: 50%; position: relative; display: inline-block; margin-right: 0.46rem; }
.inner-page .brand-mark::after { content: ""; position: absolute; inset: 0.18rem; border: 2px solid #fff; border-radius: 50%; }
.inner-page .navbar-dark .navbar-nav .nav-link { color: #f2f2fb; font-size: 15px; font-weight: 500; }
.inner-page .navbar-dark .navbar-nav .nav-link:hover, .inner-page .navbar-dark .navbar-nav .nav-link:focus { color: #fff; }
.inner-page .btn-contact { background: var(--primary); border: 0; border-radius: 12px; color: #fff; font-weight: 600; font-size: 14px; transition: transform 0.2s ease, filter 0.2s ease; }
.inner-page .btn-contact:hover { color: #fff; transform: translateY(-1px); filter: brightness(1.1); }
.inner-page .hero-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1rem 1.9rem;
  --banner-h1-size: clamp(2rem, 3vw, 3.1rem);
  --banner-h1-weight: 800;
  --banner-lead-size: clamp(0.97rem, 1vw, 1.22rem);
  --banner-lead-weight: 500;
}
.inner-page .hero-content h1 { margin: 0; color: #fff; font-size: var(--banner-h1-size); font-weight: var(--banner-h1-weight); letter-spacing: -0.02em; }
.inner-page .hero-content p { margin: 0.6rem auto 1.1rem; color: rgba(255, 255, 255, 0.93); font-size: var(--banner-lead-size); font-weight: var(--banner-lead-weight); }
.inner-page .hero-search { max-width: 575px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.08); }
.inner-page .hero-search .input-group-text { border: 0; background: transparent; color: rgba(255, 255, 255, 0.9); padding: 0.7rem 0.4rem 0.7rem 1rem; font-size: var(--banner-lead-size); font-weight: var(--banner-lead-weight); }
.inner-page .hero-search .form-control { border: 0; background: transparent; color: #fff; font-size: var(--banner-lead-size); font-weight: var(--banner-lead-weight); padding: 0.68rem 1rem 0.68rem 0.4rem; }
.inner-page .hero-search .form-control::placeholder { color: rgba(255, 255, 255, 0.82); }
.inner-page .hero-search .form-control:focus { box-shadow: none; }
.inner-page .inner-main { background: var(--bg-page); }
.inner-page .content-wrap { padding: 1.15rem 1rem 1.15rem; }

@media (max-width: 991.98px) {
  .hero,
  .inner-page .hero-content {
    --banner-h1-size: clamp(1.8rem, 4vw, 2.7rem);
    --banner-lead-size: 0.96rem;
  }

  .inner-page .navbar-wrap { padding-top: 0.9rem; }
  .inner-page .hero-content { padding: 1.25rem 0.8rem 1.45rem; }
  .inner-page .content-wrap { padding: 1rem; }
}

@media (max-width: 767.98px) {
  .inner-page .inner-hero { min-height: 245px; }
  .inner-page .hero-shape-bottom { left: 14%; width: 72%; }
  .inner-page .hero-search { max-width: 100%; }
}



/* Success & Support hub
   -------------------------------------------------------------------------- */

.inner-page.support-hub-page .support-hub-wrap {
  padding-bottom: 2.25rem;
}

.inner-page.support-hub-page .support-hub-head {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.inner-page.support-hub-page .support-hub-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #26144d;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.inner-page.support-hub-page .support-hub-head h2 i {
  font-size: 21px;
}

.inner-page.support-hub-page .support-hub-head nav {
  margin-left: auto;
  flex-shrink: 0;
}

.inner-page.support-hub-page .support-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.5rem;
  font-size: 14px;
  font-weight: 500;
}

.inner-page.support-hub-page .support-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b677d;
}

.inner-page.support-hub-page .support-breadcrumb li + li::before {
  content: "/";
  color: #b8b4c4;
  margin-right: 0.5rem;
}

.inner-page.support-hub-page .support-breadcrumb a {
  color: #5c5a6e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.inner-page.support-hub-page .support-breadcrumb a:hover {
  color: var(--primary-2);
}

.inner-page.support-hub-page .support-breadcrumb [aria-current="page"] {
  color: #26144d;
  font-weight: 600;
}

.inner-page.support-hub-page .support-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.inner-page.support-hub-page .support-quick-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(223, 227, 234, 0.95);
  box-shadow: 0 1px 8px rgba(28, 22, 48, 0.06);
  text-decoration: none;
  color: #16151e;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inner-page.support-hub-page .support-quick-action:hover {
  border-color: #cfc6e8;
  box-shadow: 0 8px 22px rgba(40, 6, 105, 0.1);
  transform: translateY(-2px);
  color: #16151e;
}

.inner-page.support-hub-page .support-quick-action i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 6, 105, 0.08);
  color: var(--primary-2);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.inner-page.support-hub-page .support-quick-action strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #26144d;
  margin-bottom: 0.1rem;
}

.inner-page.support-hub-page .support-quick-action span {
  display: block;
  font-size: 13px;
  color: #6b677d;
  line-height: 1.35;
}

.inner-page.support-hub-page .support-hub-intro {
  margin: 0 0 1.35rem;
  color: #4a465f;
  font-size: 16px;
  line-height: 1.6;
  max-width: 72ch;
}

.inner-page.support-hub-page .support-hub-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(223, 227, 234, 0.95);
  box-shadow: 0 1px 8px rgba(28, 22, 48, 0.06);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inner-page.support-hub-page .support-hub-category-card:hover {
  border-color: #cfc6e8;
  box-shadow: 0 10px 28px rgba(40, 6, 105, 0.12);
  transform: translateY(-3px);
  color: inherit;
}

.inner-page.support-hub-page .support-hub-category-card .icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(40, 6, 105, 0.08);
  border: 1px solid rgba(40, 6, 105, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary-2);
  font-size: 1rem;
}

.inner-page.support-hub-page .support-hub-category-card h3 {
  margin: 0 0 0.45rem;
  font-size: 17px;
  font-weight: 600;
  color: #16151e;
}

.inner-page.support-hub-page .support-hub-category-card p {
  margin: 0 0 0.85rem;
  font-size: 14px;
  line-height: 1.5;
  color: #2f2d3a;
  flex: 1 1 auto;
}

.inner-page.support-hub-page .support-hub-category-card .link-label {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-2);
}

.inner-page.support-hub-page .support-hub-panel {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(223, 227, 234, 0.95);
  box-shadow: 0 1px 8px rgba(28, 22, 48, 0.06);
  padding: 1.2rem 1.25rem 1.3rem;
}

.inner-page.support-hub-page .support-hub-panel h3 {
  margin: 0 0 0.95rem;
  font-size: 20px;
  font-weight: 600;
  color: #26144d;
}

.inner-page.support-hub-page .support-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-page.support-hub-page .support-topic-list li + li {
  margin-top: 0.55rem;
}

.inner-page.support-hub-page .support-topic-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  background: #f7f8fc;
  color: #262336;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.inner-page.support-hub-page .support-topic-list a:hover {
  background: #efeaf8;
  color: var(--primary-2);
  transform: translateX(2px);
}

.inner-page.support-hub-page .support-topic-list i {
  color: #8a84a0;
  font-size: 1rem;
}

.inner-page.support-hub-page .support-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-page.support-hub-page .support-contact-list li + li {
  margin-top: 0.7rem;
}

.inner-page.support-hub-page .support-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #fafbfe 0%, #fff 100%);
  border: 1px solid var(--line);
}

.inner-page.support-hub-page .support-contact-list i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}

.inner-page.support-hub-page .support-contact-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #16151e;
  margin-bottom: 0.15rem;
}

.inner-page.support-hub-page .support-contact-list span {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: #4a465f;
}

.inner-page.support-hub-page .support-hub-faq {
  margin-top: 1.75rem;
}

.inner-page.support-hub-page .support-hub-faq-head {
  margin-bottom: 1rem;
}

.inner-page.support-hub-page .support-hub-faq-head h3 {
  margin: 0 0 0.35rem;
  font-size: 22px;
  font-weight: 600;
  color: #26144d;
}

.inner-page.support-hub-page .support-hub-faq-head p {
  margin: 0;
  color: #4a465f;
  font-size: 15px;
  line-height: 1.55;
  max-width: 62ch;
}

.inner-page.support-hub-page .support-hub-cta {
  margin-top: 1.75rem;
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--hero-start) 0%, var(--hero-mid) 48%, var(--hero-end) 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(66, 31, 177, 0.22);
}

.inner-page.support-hub-page .support-hub-cta h3 {
  margin: 0 0 0.35rem;
  font-size: 22px;
  font-weight: 700;
}

.inner-page.support-hub-page .support-hub-cta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.inner-page.support-hub-page .support-hub-cta .btn-contact {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .inner-page.support-hub-page .support-quick-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .inner-page.support-hub-page .support-hub-head h2 {
    font-size: 20px;
  }

  .inner-page.support-hub-page .support-hub-cta h3 {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .inner-page.support-hub-page .support-hub-head {
    flex-direction: column;
    align-items: stretch;
  }

  .inner-page.support-hub-page .support-hub-head nav {
    margin-left: 0;
    align-self: flex-end;
  }
}

/* Contact page
   -------------------------------------------------------------------------- */

.inner-page.contact-page .contact-wrap {
  padding-bottom: 2.25rem;
}

.inner-page.contact-page .contact-head {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.inner-page.contact-page .contact-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #26144d;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.inner-page.contact-page .contact-head h2 i {
  font-size: 21px;
}

.inner-page.contact-page .contact-head nav {
  margin-left: auto;
  flex-shrink: 0;
}

.inner-page.contact-page .contact-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.5rem;
  font-size: 14px;
  font-weight: 500;
}

.inner-page.contact-page .contact-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b677d;
}

.inner-page.contact-page .contact-breadcrumb li + li::before {
  content: "/";
  color: #b8b4c4;
  margin-right: 0.5rem;
}

.inner-page.contact-page .contact-breadcrumb a {
  color: #5c5a6e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.inner-page.contact-page .contact-breadcrumb a:hover {
  color: var(--primary-2);
}

.inner-page.contact-page .contact-breadcrumb [aria-current="page"] {
  color: #26144d;
  font-weight: 600;
}

.inner-page.contact-page .contact-intro {
  margin: 0 0 1.35rem;
  color: #4a465f;
  font-size: 16px;
  line-height: 1.6;
  max-width: 72ch;
}

.inner-page.contact-page .contact-form-card,
.inner-page.contact-page .contact-info-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(223, 227, 234, 0.95);
  box-shadow: 0 1px 8px rgba(28, 22, 48, 0.06);
  padding: 1.25rem 1.25rem 1.35rem;
  height: 100%;
}

.inner-page.contact-page .contact-form-card h3,
.inner-page.contact-page .contact-info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 20px;
  font-weight: 600;
  color: #26144d;
}

.inner-page.contact-page .contact-form-card p,
.inner-page.contact-page .contact-info-card > p {
  margin: 0 0 1rem;
  color: #4a465f;
  font-size: 15px;
  line-height: 1.5;
}

.inner-page.contact-page .contact-form-card label {
  font-size: 14px;
  font-weight: 600;
  color: #352f4a;
  margin-bottom: 0.35rem;
}

.inner-page.contact-page .contact-form-card .form-control,
.inner-page.contact-page .contact-form-card .form-select {
  border-radius: 10px;
  border: 1px solid #dfe3ea;
  font-size: 15px;
}

.inner-page.contact-page .contact-form-card .form-control:focus,
.inner-page.contact-page .contact-form-card .form-select:focus {
  border-color: #b8a8d8;
  box-shadow: 0 0 0 0.2rem rgba(40, 6, 105, 0.12);
}

.inner-page.contact-page .contact-form-card .btn-submit {
  border: 0;
  border-radius: 12px;
  padding: 0.58rem 1.45rem;
  font-weight: 600;
  font-size: 15px;
  background: var(--primary);
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.inner-page.contact-page .contact-form-card .btn-submit:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.inner-page.contact-page .contact-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-page.contact-page .contact-detail-list li + li {
  margin-top: 0.7rem;
}

.inner-page.contact-page .contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #fafbfe 0%, #fff 100%);
  border: 1px solid var(--line);
}

.inner-page.contact-page .contact-detail-list i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}

.inner-page.contact-page .contact-detail-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #16151e;
  margin-bottom: 0.15rem;
}

.inner-page.contact-page .contact-detail-list span,
.inner-page.contact-page .contact-detail-list a {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: #4a465f;
  text-decoration: none;
}

.inner-page.contact-page .contact-detail-list a:hover {
  color: var(--primary-2);
}

.inner-page.contact-page .contact-help-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-2);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.inner-page.contact-page .contact-help-link:hover {
  color: var(--primary);
  transform: translateX(2px);
}

@media (max-width: 767.98px) {
  .inner-page.contact-page .contact-head h2 {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .inner-page.contact-page .contact-head {
    flex-direction: column;
    align-items: stretch;
  }

  .inner-page.contact-page .contact-head nav {
    margin-left: 0;
    align-self: flex-end;
  }
}
