:root {
  --brand-blue: #1a56db;
  --brand-blue-dark: #1241b0;
  --brand-blue-light: #e8f0fe;
  --accent: #f59e0b;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --bg-light: #f8faff;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(26, 86, 219, .12);
  --shadow-lg: 0 8px 32px rgba(26, 86, 219, .15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(26, 86, 219, .35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  background: var(--brand-blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.text-brand {
  color: var(--brand-blue);
}

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

.fw-800 {
  font-weight: 800;
}

.navbar {
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow .28s ease, backdrop-filter .28s ease, background .28s ease, padding .28s ease, transform .28s ease;
}

body {
  padding-top: 78px;
}

.navbar.is-sticky {
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .94);
  padding: 0px 0;
}

.navbar.is-sticky .navbar-brand {
  transform: scale(.80);
}

.navbar.is-sticky .btn-apply {
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar-brand,
.nav-link,
.navbar .btn-apply {
  transition: transform .28s ease, color .2s ease, background .2s ease, padding .28s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.navbar-brand span {
  color: var(--brand-blue);
}

.navbar-brand small {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid) !important;
  padding: 6px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue) !important;
}

.navbar .btn-apply {
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  transition: background .2s;
}

.navbar .btn-apply:hover {
  background: var(--brand-blue-dark);
  color: var(--white);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.section-lead {
  color: var(--text-mid);
}

.btn-primary-brand {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.btn-primary-brand:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  color: var(--white);
}

.card-brand {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


.homePage.hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f0fe 100%);
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
  min-height: 560px;
}

.homePage.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .07) 0%, transparent 70%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.homePage.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}



.homePage.hero p.lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 420px;
}

/* Social proof strip */
.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sp-avatars {
  display: flex;
}

.sp-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

.sp-avatars img:first-child {
  margin-left: 0;
}

.sp-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sp-label strong {
  color: var(--text-dark);
}

.stars {
  color: #22c55e;
  font-size: .85rem;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--brand-blue);
}

.feature-item h6 {
  font-weight: 700;
  margin: 0 0 3px;
  font-size: .92rem;
}

.feature-item p {
  margin: 0;
  font-size: .8rem;
  color: var(--text-muted);
}


/* ── POPULAR VISAS ── */
.section-visas {
  padding: 72px 0;
  background: var(--bg-light);
}

.visa-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  border: 1.5px solid transparent;
}

.visa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-light);
}

.visa-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.visa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.visa-card:hover .visa-card-img img {
  transform: scale(1.06);
}

.visa-flag {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
  overflow: hidden;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.visa-card-body {
  padding: 28px 16px 16px;
}

.visa-card-body h5 {
  font-weight: 800;
  margin: 0 0 2px;
  font-size: 1rem;
}

.visa-card-body .visa-type {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.visa-price {
  font-size: .9rem;
  color: var(--text-mid);
}

.visa-price strong {
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.btn-apply-card {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 9px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-apply-card:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  margin-top: 40px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.btn-view-all:hover {
  border-color: var(--brand-blue);
}

/* ── HOW IT WORKS ── */
.section-how {
  padding: 72px 0;
  background: var(--white);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 86, 219, .35);
}

.step-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.how-step h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.how-step p {
  font-size: .88rem;
  color: var(--text-muted);
  max-width: 200px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 1.8rem;
  padding-top: 30px;
}

.section-trust,
.section-stats {
  background: linear-gradient(135deg, #1241b0 0%, #1a56db 60%, #2563eb 100%);
  padding: 64px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-trust::after,
.section-stats::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.trust-stat {
  text-align: center;
}

.trust-stat .big {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.trust-stat .label {
  font-size: .85rem;
  opacity: .8;
  margin-top: 4px;
}

.btn-contact {
  background: var(--brand-blue);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-contact:hover {
  background: var(--brand-blue-dark);
}


.breadcrumb-item a {
  color: var(--brand-blue);
  text-decoration: none;
  font-size: .85rem;
}

.breadcrumb-item.active {
  color: var(--text-muted);
  font-size: .85rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-muted);
}



.aboutPage.page-hero p.lead {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0;
  font-size: 1.05rem;
}

/* Extracted from about.html */
.aboutPage.page-hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f0fe 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.aboutPage.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .06) 0%, transparent 70%);
  pointer-events: none;
}

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--brand-blue);
  border-radius: 2px;
  margin-top: 10px;
}

.section-divider.center {
  margin: 10px auto 0;
}

/* ── OUR STORY ── */
.section-story {
  padding: 80px 0;
  background: var(--white);
}

.story-img-wrap {
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-lg);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.story-badge .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.story-badge .lbl {
  font-size: .78rem;
  opacity: .85;
  margin-top: 3px;
}

.story-text p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: .97rem;
}

/* ── MISSION / VISION / VALUES CARDS ── */
.section-mvv {
  padding: 80px 0;
  background: var(--bg-light);
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.mvv-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mvv-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.mvv-icon.blue {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

.mvv-icon.amber {
  background: #fef3c7;
  color: #d97706;
}

.mvv-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.mvv-card h4 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.mvv-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}


.stat-box {
  text-align: center;
  padding: 0 16px;
}

.stat-box .big {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.stat-box .lbl {
  font-size: .85rem;
  opacity: .8;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

/* ── TEAM ── */
.section-team {
  padding: 80px 0;
  background: var(--white);
}

.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.team-card:hover .team-img {
  transform: scale(1.04);
}

.team-img-wrap {
  overflow: hidden;
}

.team-body {
  padding: 20px;
}

.team-body h5 {
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 1rem;
}

.team-role {
  font-size: .78rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.team-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.team-socials a:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* ── TIMELINE ── */
.section-timeline {
  padding: 80px 0;
  background: var(--bg-light);
}

.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.tl-item {
  position: relative;
  width: 50%;
  padding: 0 48px 48px 0;
  text-align: right;
}

.tl-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 48px 48px;
  text-align: left;
}

.tl-dot {
  position: absolute;
  right: -10px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--brand-blue);
}

.tl-item:nth-child(even) .tl-dot {
  right: auto;
  left: -10px;
}

.tl-year {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.tl-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.tl-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: .92rem;
}

.tl-card p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── VALUES ── */
.section-values {
  padding: 80px 0;
  background: var(--white);
}

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-blue-light);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.value-item h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.value-item p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.values-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 460px;
  box-shadow: var(--shadow-lg);
}

/* ── TESTIMONIALS ── */
.section-testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: box-shadow .25s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.stars {
  color: #f59e0b;
  font-size: .85rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-author img {
  width: 42px !important;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.t-author .name {
  font-weight: 700;
  font-size: .88rem;
}

.t-author .label {
  font-size: .76rem;
  color: var(--text-muted);
}

.section-cta {
  background: linear-gradient(135deg, #1241b0 0%, #1a56db 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.section-cta h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.section-cta p {
  opacity: .85;
  margin-bottom: 28px;
  font-size: 1rem;
}

.btn-cta-white {
  background: var(--white);
  color: var(--brand-blue);
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  color: var(--brand-blue);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255, 255, 255, .5);
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, background .2s;
}

.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}



/* Extracted from contact.html */
.section-contact-cards {
  padding: 0 0 72px;
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 30px 26px;
  height: 100%;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border: 1.5px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-light);
}

.contact-info-card .icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-blue);
  margin: 0 auto 16px;
}

.contact-info-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 4px;
}

.contact-info-card a.card-link {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
}

.contact-info-card a.card-link:hover {
  text-decoration: underline;
}

/* ── CONTACT FORM + MAP ── */
.section-contact-main {
  padding: 20px 0 80px;
  background: var(--bg-light);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  height: 100%;
}

.contact-form-wrap label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  display: block;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--text-mid);
  transition: border-color .2s, box-shadow .2s;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .12);
}

.contact-form-wrap textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  border: none;
  width: 100%;
  transition: background .2s, transform .15s;
}

.btn-submit:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 260px;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
  margin-top: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.office-card .icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.office-card h6 {
  font-weight: 700;
  margin: 0 0 4px;
  font-size: .92rem;
}

.office-card p {
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-mid);
}

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

.hours-list li span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}


.section-trust h3 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-trust p {
  opacity: .85;
  font-size: .95rem;
  margin-bottom: 0;
}

/* Extracted from faqs.html */
.faqPage.page-hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f0fe 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.faqPage.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .07) 0%, transparent 70%);
}

.faqPage.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .06) 0%, transparent 70%);
}

.faqPage.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}



.faqPage.page-hero p.lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 14px auto 28px;
  position: relative;
  z-index: 1;
}

/* Search bar inside hero */
.faq-search-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-search-wrap input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: .95rem;
  color: var(--text-mid);
  outline: none;
  box-shadow: var(--shadow-md);
  transition: border-color .2s, box-shadow .2s;
}

.faq-search-wrap input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, .12);
}

.faq-search-wrap .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.no-results {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: .95rem;
}

.no-results i {
  font-size: 2.5rem;
  color: var(--border);
  display: block;
  margin-bottom: 10px;
}



.faq-cats {
  padding: 36px 0 0;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}

.cat-pill i {
  font-size: .95rem;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

/* ── MAIN FAQ CONTENT ── */
.section-faqs {
  padding: 48px 0 80px;
}

/* Sidebar sticky nav */
.faq-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .86rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.sidebar-nav li a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 600;
}

.sidebar-nav li a .pill-count {
  margin-left: auto;
  background: var(--border);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.sidebar-nav li a.active .pill-count {
  background: var(--brand-blue);
  color: var(--white);
}

/* FAQ group heading */
.faq-group {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.faq-group-header .gh-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.faq-group-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-dark);
  padding: 16px 20px;
  background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a56db' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
  font-size: .88rem;
  color: var(--text-muted);
  padding: 16px 20px;
  line-height: 1.75;
}

.faq-accordion .accordion-body a {
  color: var(--brand-blue);
}

.faq-accordion .accordion-body ul {
  padding-left: 18px;
  margin: 8px 0 0;
}

.faq-accordion .accordion-body ul li {
  margin-bottom: 4px;
}

/* Highlight match */
.highlight {
  background: #fef3c7;
  border-radius: 3px;
  padding: 0 2px;
}

/* ── STATS BAND ── */
.section-stats {
  background: linear-gradient(135deg, #1241b0 0%, #1a56db 60%, #2563eb 100%);
  padding: 56px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-stats::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.stat-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-box .big {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.stat-box .label {
  font-size: .85rem;
  opacity: .8;
  margin-top: 4px;
}

/* ── STILL NEED HELP ── */
.section-help {
  padding: 72px 0;
  background: var(--bg-light);
}

.help-channel-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  border: 1.5px solid transparent;
}

.help-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-light);
}

.help-channel-card .icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-blue);
  margin: 0 auto 16px;
}

.help-channel-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.help-channel-card p {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 16px;
}

.btn-channel {
  display: inline-block;
  padding: 9px 22px;
  border: 1.5px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  color: var(--brand-blue);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-channel:hover {
  background: var(--brand-blue);
  color: var(--white);
}




/* Extracted from privacy-policy.html */
.ppPage.page-hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f0fe 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.ppPage.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .06) 0%, transparent 70%);
  pointer-events: none;
}

.ppPage.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.ppPage.page-hero .lead {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
}

.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.updated-badge i {
  color: var(--brand-blue);
}

.policy-section {
  padding: 64px 0 80px;
  background: var(--white);
}

.toc-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: sticky;
  top: 90px;
}

.toc-card h6 {
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}

.toc-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.toc-card ol li {
  counter-increment: toc;
  margin-bottom: 4px;
}

.toc-card ol li a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 7px 8px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.toc-card ol li a::before {
  content: counter(toc);
  font-size: .72rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toc-card ol li a:hover,
.toc-card ol li a.active {
  background: var(--white);
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}

/* POLICY CONTENT */
.policy-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 14px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  scroll-margin-top: 100px;
}

.policy-content h2 .num-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.policy-content p {
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-content ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.policy-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.7;
}

.policy-content ul li i {
  color: var(--brand-blue);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: .8rem;
}

.policy-block {
  margin-bottom: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-callout {
  background: var(--brand-blue-light);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 18px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-callout i {
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}

.info-callout p {
  margin: 0;
  font-size: .87rem;
  color: var(--text-dark);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: .87rem;
}

.policy-table th {
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.policy-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text-mid);
}

/* CONTACT CARD */
.contact-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--border);
}

.contact-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: var(--text-mid);
}

.contact-row i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, background .2s;
  z-index: 999;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--brand-blue-dark);
}

/* Extracted from services.html */

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
}

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--brand-blue);
  border-radius: 2px;
  margin: 10px auto 0;
}

.section-divider.start2 {
  margin: 10px 0 0;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--brand-blue);
}

.feature-item h6 {
  font-weight: 700;
  margin: 0 0 3px;
  font-size: .92rem;
}

.feature-item p {
  margin: 0;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── SERVICES GRID ── */
.section-services {
  padding: 72px 0;
  background: var(--bg-light);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 26px;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  border: 1.5px solid transparent;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-light);
}

.service-card .icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 18px;
}

.service-card.popular {
  border-color: var(--brand-blue);
}

.service-card .popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .03em;
}

.service-card h5 {
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.service-card p.desc {
  color: var(--text-muted);
  font-size: .87rem;
  margin-bottom: 18px;
  line-height: 1.6;
  min-height: 66px;
}

.service-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.service-card .price {
  font-size: .85rem;
  color: var(--text-mid);
}

.service-card .price strong {
  color: var(--brand-blue);
  font-size: 1.1rem;
}

.service-card .svc-link {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card .svc-link:hover {
  text-decoration: underline;
}

.service-card ul.svc-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.service-card ul.svc-points li {
  font-size: .82rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card ul.svc-points li i {
  color: #22c55e;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: .8rem;
}

/* ── HOW IT WORKS ── */
.section-how {
  padding: 72px 0;
  background: var(--white);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 86, 219, .35);
}

.step-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.how-step h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.how-step p {
  font-size: .88rem;
  color: var(--text-muted);
  max-width: 200px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 1.8rem;
  padding-top: 30px;
}

/* ── WHY CHOOSE / COMPARISON ── */
.section-why {
  padding: 72px 0;
  background: var(--bg-light);
}

.why-row {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}

.why-item:last-child {
  border-bottom: none;
}

.why-item .icon-ring {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-blue);
}

.why-item h6 {
  font-weight: 700;
  margin: 0 0 3px;
  font-size: .95rem;
}

.why-item p {
  margin: 0;
  font-size: .84rem;
  color: var(--text-muted);
}

.section-faq {
  padding: 72px 0;
  background: var(--white);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-dark);
  padding: 16px 20px;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-body {
  font-size: .88rem;
  color: var(--text-muted);
  padding: 16px 20px;
  line-height: 1.7;
}

.btn-light-cta {
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .2s;
}

.btn-light-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  color: var(--brand-blue-dark);
}



/* Countries page */

.country-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-light);
}

.country-flag {
  height: 170px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-flag--grad {
  position: relative;
  overflow: hidden;
}

.country-flag--grad::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .95;
}

.country-flag--grad::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -50px;
  top: -60px;
  background: rgba(255, 255, 255, .14);
}

.country-flag--grad .flag-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .16);
}

.country-flag--grad.usa::before { background: linear-gradient(135deg, #1d4ed8, #ef4444); }
.country-flag--grad.uk::before { background: linear-gradient(135deg, #0f172a, #2563eb); }
.country-flag--grad.australia::before { background: linear-gradient(135deg, #0369a1, #14b8a6); }
.country-flag--grad.canada::before { background: linear-gradient(135deg, #ef4444, #f97316); }
.country-flag--grad.schengen::before { background: linear-gradient(135deg, #2563eb, #8b5cf6); }
.country-flag--grad.uae::before { background: linear-gradient(135deg, #7c2d12, #dc2626); }
.country-flag--grad.singapore::before { background: linear-gradient(135deg, #be123c, #fb7185); }
.country-flag--grad.thailand::before { background: linear-gradient(135deg, #1d4ed8, #f8fafc 50%, #dc2626); }
.country-flag--grad.vietnam::before { background: linear-gradient(135deg, #b91c1c, #f59e0b); }

.country-body {
  padding: 22px;
}

.country-body h5 {
  font-weight: 800;
  margin-bottom: 6px;
}

.country-meta {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.country-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 6px 10px;
  border-radius: 999px;
}

.country-body p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-countries {
  padding: 72px 0;
  background: var(--bg-light);
}

.filter-chip {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .84rem;
  font-weight: 600;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}

.section-facts {
  padding: 72px 0;
  background: var(--white);
}

.fact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.fact-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.fact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .88rem;
}

/* About Us testimonial carousel */
.testimonial-carousel .testimonial-card {
  margin: 0 1px 12px;
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.testimonial-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: var(--white) !important;
  color: var(--brand-blue) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}

.testimonial-carousel .owl-nav button:hover {
  background: var(--brand-blue) !important;
  color: var(--white) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 12px;
}







/* ── Design Tokens (shared across all eyvisa pages) ── */

.visaPage.page-hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f0fe 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.visaPage.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .07) 0%, transparent 70%);
}

.visaPage.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, .06) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.page-hero h1 em {
  color: var(--brand-blue);
  font-style: normal;
}

.page-hero p.lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}



.section-main {
  padding: 56px 0 80px;
  background: var(--bg-light);
}

/* Fact / content cards */
.fact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  border: 1.5px solid transparent;
  transition: box-shadow .25s, border-color .25s;
  scroll-margin-top: 90px;
}

.fact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-light);
}

.fact-card ul,
.fact-card ol {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.75;
}

.fact-card ul li,
.fact-card ol li {
  margin-bottom: 4px;
}

.fact-card ul li::marker {
  color: var(--brand-blue);
}

/* Step list */
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .9rem;
  color: var(--text-mid);
}

.step-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-list li strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
  font-size: .92rem;
}

/* Tables */
.vw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.vw-table thead th {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
}

.vw-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.vw-table tbody tr:last-child {
  border-bottom: none;
}

.vw-table td {
  padding: 10px 16px;
  color: var(--text-mid);
}

.vw-table tfoot td {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--text-dark);
  padding: 10px 16px;
}

/* Alert info box */
.info-box {
  background: var(--brand-blue-light);
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: .86rem;
  color: var(--text-mid);
  margin-top: 16px;
}

.info-box i {
  color: var(--brand-blue);
  margin-right: 6px;
}

/* Doc category header */
.doc-cat-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-cat-title i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

/* ── SIDEBAR ── */
.sidebar-sticky {
  position: sticky;
  top: 82px;
}

/* Quick info card */
.quick-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1.5px solid var(--border);
}

.quick-card+.quick-card {
  margin-top: 20px;
}

.quick-card .qc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.quick-card .qc-title .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.quick-card .qc-title h6 {
  margin: 0;
  font-weight: 700;
  font-size: .92rem;
}

.quick-card ul {
  padding-left: 18px;
  margin: 0;
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.quick-card ul li {
  margin-bottom: 4px;
}

.quick-card p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Section nav */
.section-nav {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.section-nav p {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.section-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background .2s, color .2s;
}

.section-nav ul li a:hover {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 600;
}

.section-nav ul li a span.num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: .7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
}

.cta-card h5 {
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-card p {
  font-size: .84rem;
  opacity: .85;
  margin-bottom: 18px;
}



.help-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 20px;
}

.help-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-blue);
}

.help-card h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.help-card p {
  color: var(--text-muted);
  font-size: .88rem;
  margin: 0 0 14px;
}





/* ── FOOTER ── */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 0;
}

footer .brand-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
}

footer .brand-name span {
  color: var(--brand-blue);
}

footer .brand-tagline {
  font-size: .78rem;
  color: #64748b;
  margin-top: 2px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .85rem;
  transition: background .2s, color .2s;
}

.footer-socials a:hover {
  background: var(--brand-blue);
  color: var(--white);
}

footer h6 {
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .84rem;
  transition: color .2s;
}

footer ul li a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
}

.footer-contact li i {
  color: var(--brand-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 48px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--white);
}




@media (max-width: 991px) {
  .homePage.hero {
    padding: 48px 0 0;
    min-height: auto;
  }

  .toc-card {
    position: static;
    margin-bottom: 32px;
  }

  .step-arrow {
    display: none;
  }

  .timeline::before {
    left: 16px;
  }

  .tl-item {
    width: 100%;
    padding: 0 0 36px 48px;
    text-align: left;
    margin-left: 0;
  }

  .tl-item:nth-child(even) {
    margin-left: 0;
    padding: 0 0 36px 48px;
    text-align: left;
  }

  .tl-dot {
    right: auto;
    left: 6px !important;
    top: 6px;
  }

  .story-badge {
    left: 8px;
    bottom: -16px;
  }

  .page-hero {
    padding: 44px 0 48px;
  }

  .step-arrow {
    display: none;
  }

  .faq-sidebar {
    position: static;
    margin-bottom: 28px;
  }

  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-nav li a {
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
  }

  .sidebar-nav li a i {
    display: none;
  }

  .sidebar-nav li a .pill-count {
    display: none;
  }

  .sidebar-sticky {
    position: static;
  }

  .contact-form-wrap {
    padding: 28px;
  }

}

@media (max-width: 767px) {
  body {
    padding-top: 72px;
  }

  .homePage.hero h1 {
    font-size: 1.9rem;
  }

  .feature-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .help-card {
    flex-direction: column;
    text-align: center;
  }

  .fact-card {
    padding: 22px;
  }

  .section-trust .col-lg-7 {
    margin-bottom: 36px;
  }

  .stat-box {
    margin-bottom: 24px;
  }

  .stat-divider {
    display: none;
  }

  .value-num {
    font-size: 1.8rem;
    width: 36px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .feature-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .section-trust .text-lg-end {
    text-align: center !important;
    margin-top: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
