
/* ---- Variables ---- */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */

:root {
  --primary: #1a56c4;
  --primary-dark: #1240a0;
  --primary-light: #e8f0fc;
  --accent: #f4a228;
  --accent-dark: #d8881a;
  --canada: #d52b1e;
  --canada-light: #fff5f5;
  --australia: #006db7;
  --australia-light: #f0f7ff;
  --text-dark: #0d1b2a;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --white: #ffffff;
  --surface: #f8fafd;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --nav-height: 68px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 600;
}

p {
  text-align: left;
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  transition: all 0.2s;
}
img {
  max-width: 100%;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   DISCLAIMER BAR
========================================== */
.disclaimer-bar {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ==========================================
   NAVBAR — Clean Minimal
========================================== */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border);
}

.brand-logo {
  display: flex;
  align-items: center;
}

/* logo image */
.brand-img {
  width:  83px;
 
  display: block;
}

/* Single nav link — country dropdown trigger */
.main-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* Icon in trigger */
.nav-icon {
  font-size: 13px;
  opacity: 0.65;
}
.nav-chevron {
  font-size: 10px;
  transition: transform 0.2s;
}
.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-trigger {
  cursor: pointer;
}

/* Dropdown panel */
.nav-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 8px;
  min-width: 300px;
  margin-top: 10px;
}

/* Dropdown section label */
.nav-dropdown-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 6px 14px 8px;
}

/* Country row in dropdown */
.nav-country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-dark) !important;
  transition: background 0.15s;
  text-decoration: none;
}
.nav-country-item:hover {
  background: var(--surface);
}

/* Real flag image */
.nav-flag-img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Country name + subtitle */
.nav-country-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-country-name {
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1;
}
.nav-country-sub {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Visa type badge — end of row */
.nav-visa-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.canada-visa-badge {
  background: #fff0f1;
  color: #c8102e;
  border: 1px solid rgba(200, 16, 46, 0.18);
}
.australia-visa-badge {
  background: #eef4ff;
  color: #00337a;
  border: 1px solid rgba(0, 51, 122, 0.15);
}

/* New Zealand badge — green */
.nz-visa-badge {
  background: #e6f5ef;
  color: #00704a;
  border: 1px solid rgba(0,112,74,0.2);
}


/* CTA button — desktop */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: white !important;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white !important;
}

/* Smaller variant for mobile inline */
.btn-nav-cta-sm {
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}

/* Mobile hamburger */
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toggler-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==========================================
   HERO
========================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafd 0%, #eef4ff 50%, #f0f7ff 100%);
  padding: 80px 0 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(26, 86, 196, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(244, 162, 40, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 57px;
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: "Fraunces", Georgia, serif;
}
.hero-highlight {
  color: var(--primary);
  font-weight: 600;
  
}

.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26, 86, 196, 0.25);
}
.btn-primary-hero:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 196, 0.35);
  color: white;
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: white;
  transition: all 0.2s;
}
.btn-ghost-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
}
.trust-item i {
  color: var(--primary);
  font-size: 15px;
}

/* Hero card area */
.hero-card-area {
  position: relative;
  padding-bottom: 30px;
}

.hero-selector-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px var(--border);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hsc-header {
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  display: flex;
  align-items: center;
}

.hsc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hsc-country {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  transition: all 0.2s;
  background: var(--surface);
}
.hsc-country:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateX(4px);
}

.hsc-info {
  flex: 1;
}
.hsc-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.hsc-info span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.hsc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  transition: all 0.2s;
}
.hsc-country:hover .hsc-arrow {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Floating stat badges */
.hero-stat-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  border: 1px solid var(--border);
}
.hero-stat-badge i {
  font-size: 22px;
  color: var(--primary);
}
.hero-stat-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.hero-stat-badge small {
  font-size: 11px;
  color: var(--text-light);
}
.badge-left {
  bottom: -10;
  left: -20px;
}
.badge-right {
  top: 20px;
  right: -20px;
}

/* ==========================================
   SHARED SECTION STYLES
========================================== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}

/* ==========================================
   HOW IT WORKS
========================================== */
.how-section {
  padding: 80px 0;
  background: var(--white);
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  transition: all 0.25s;
}
.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--primary);
  letter-spacing: 0.08em;
  background: var(--primary-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.step-card h5 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 0;
}
.step-note {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #b45309;
  background: #fffbeb;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: 600;
}

/* ==========================================
   SERVICES
========================================== */
.services-section {
  padding: 80px 0;
  background: var(--surface);
}

.service-big-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  height: 100%;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  overflow: hidden;
  position: relative;
}
.service-big-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.canada-card::before {
  background: linear-gradient(90deg, #d52b1e, #ff6b6b);
}
.australia-card::before {
  background: linear-gradient(90deg, #006db7, #00b4d8);
}

.service-big-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.sbc-left {
  flex: 1;
}
.sbc-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sbc-country-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--canada-light);
  color: var(--canada);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.australia-badge {
  background: var(--australia-light);
  color: var(--australia);
}

.service-big-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
}

.service-big-card p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.sbc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sbc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.sbc-features li i {
  color: #16a34a;
  font-size: 15px;
}

.sbc-btn {
  display: inline-flex;
  align-items: center;
  background: var(--canada);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.sbc-btn:hover {
  background: #b01e13;
  color: white;
  transform: translateX(4px);
}
.australia-sbc-btn {
  background: var(--australia);
}
.australia-sbc-btn:hover {
  background: #005799;
}

.sbc-detail-chip {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  white-space: nowrap;
}

/* ==========================================
   OFFER SECTION
========================================== */
.offer-section {
  padding: 80px 0;
  background: var(--white);
}

.offer-section h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: all 0.22s;
}
.offer-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
}

.offer-icon {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.offer-card h6 {
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 6px;
}
.offer-card p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ==========================================
   TRANSPARENCY
========================================== */
.transparency-section {
  padding: 40px 0;
  background: var(--surface);
}

.transparency-card {
  background: #fffbf0;
  border: 1.5px solid #f0d06a;
  border-radius: var(--radius-xl);
  padding: 32px 36px;
}

.trans-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #fef9c3;
  color: #b45309;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid #f0d06a;
}

.transparency-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.transparency-card p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 0;
}
.transparency-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.btn-trans {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1.5px solid #d4a017;
  color: #b45309;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-trans:hover {
  background: #fef9c3;
  color: #92400e;
}

/* =============================================
   WHO WE ARE SECTION
============================================= */
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  padding: 80px 0px;
}

.sp-who-inner {
  text-align: center;
  max-width: 990px;
  margin: 0 auto;
}
.sp-who-text p {
  font-size: 14.5px;
  color: var(--au-text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.navy-who-link {
  color: var(--au-navy);
}
.navy-who-link:hover {
  color: var(--au-navy-dark);
}

/* ============================================
   KEY INFORMATION SECTION
============================================ */
.au-key-info-section {
  padding: 60px 0;
  background: var(--au-white);
  border-bottom: 1px solid var(--au-border);
}
.au-key-info-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.au-key-info-heading .au-section-desc { max-width: 280px; }

.au-key-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.au-key-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-md);
  padding: 22px 20px;
  transition: all 0.2s;
}
.au-key-info-item:hover {
  background: var(--au-white);
  border-color: rgba(0,51,122,0.2);
  box-shadow: var(--au-shadow-sm);
}
.au-key-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--au-navy-light);
  color: var(--au-navy);
  border-radius: var(--au-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.au-key-info-item h6 {
  font-size: 14px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--au-text); margin-bottom: 6px;
}
.au-key-info-item p {
  font-size: 13px; color: var(--au-text-mid);
  margin: 0; line-height: 1.65;
}

@media (max-width: 991px) {
  .au-key-info-inner { grid-template-columns: 1fr; gap: 32px; }
  .au-key-info-heading .au-section-desc { max-width: 100%; }
}
@media (max-width: 767px) {
  .au-key-info-grid { grid-template-columns: 1fr; }
  .au-key-info-section { padding: 48px 0; }
}


/* ==========================================
   FAQ
========================================== */
.faq-section-home {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
}
.faq-q:hover {
  background: var(--surface);
}
.faq-q i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-a {
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-a.show {
  padding: 16px 22px;
}

/* ==========================================
   CTA BANNER
========================================== */
.cta-banner-section {
  padding: 60px 0;
  background: var(--surface);
}

.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #1e4fc2 60%,
    #1240a0 100%
  );
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  margin-bottom: 10px;
  
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: white;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cta-btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
}

.cta-banner-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.deco-circle.c1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -60px;
}
.deco-circle.c2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  right: 100px;
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 55px;
  width: auto;
  display: block;
}
.footer-about a{
    color:rgba(255, 255, 255, 0.52);
}
.footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  max-width: 360px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
}

/* Column headings */
.footer-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 52%);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 18px;
}

/* Link lists — clean, no icons */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.15s;
  display: inline-block;
}
.footer-links a:hover {
  color: white;
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.15s;
}
a.footer-contact-item:hover {
  color: white;
}
.footer-contact-item i {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item span {
  line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 0 24px;
}
.footer-copy {
  font-size: 12.5px;
  color:rgb(255 255 255 / 52%);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
}
.footer-disclaimer-note {
  font-size: 12px;
  color: rgb(255 255 255 / 52%);
  font-family: "Plus Jakarta Sans", sans-serif;
  
  margin: 0 auto;
  line-height: 1.65;
}
.footer-disclaimer-note strong {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}
.footer-disclaimer-note a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}
.footer-disclaimer-note a:hover {
  color: white;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 12px;
  font-weight: 600;
  color:rgb(255 255 255 / 52%);
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.15s;
}
.footer-bottom-links a:hover {
  color: white;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-card-area {
    padding-bottom: 10px;
  }
  .badge-left,
  .badge-right {
    display: none;
  }
  .service-big-card {
    flex-direction: column;
  }
  .sbc-right {
    flex-direction: row;
    justify-content: flex-start;
  }
  .cta-banner {
    padding: 40px 28px;
  }
}

@media (max-width: 767px) {
  :root {
    --nav-height: 62px;
  }
  .hero-headline {
    font-size: 34px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary-hero,
  .btn-ghost-hero {
    justify-content: center;
  }
  .hero-trust-row {
    gap: 14px;
  }
  .cta-banner {
    padding: 32px 22px;
  }
  .cta-banner-btns {
    flex-direction: column;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    text-align: center;
    justify-content: center;
  }
  .transparency-card {
    padding: 24px 20px;
  }
  .footer-top {
    padding: 44px 0 32px;
  }
  .footer-bottom {
    padding: 22px 0 18px;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .footer-disclaimer-note {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 48px 0 40px;
  }
  .service-big-card {
    padding: 24px 20px;
  }
  .sbc-right {
    display: none;
  }
  .cta-banner {
    padding: 28px 18px;
  }
}

/* ==========================================
   BOOTSTRAP OVERRIDES — MOBILE NAV
========================================== */
.navbar-collapse {
  background: white;
}

@media (max-width: 991px) {
  .navbar-collapse {
    border-top: 1px solid var(--border);
    padding: 10px 0 16px;
    margin-top: 0;
  }
  .navbar-collapse .navbar-nav {
    padding: 0 4px;
  }
  .main-nav .nav-link {
    padding: 12px 16px !important;
  }
  .nav-dropdown {
    box-shadow: none;
    border: none;
    background: var(--surface);
    margin-top: 0;
    border-radius: var(--radius-md);
    min-width: 100%;
  }
  .nav-country-item {
    padding: 10px 14px;
  }
  .btn-nav-cta {
    margin: 0;
  }
}

/* ---- Page Hero Bar ---- */
.inner-page {
  padding-top: 0;
}

/* ==========================================
   PAGE HERO 
========================================== */
.page-hero-bar {
  background: linear-gradient(135deg, #f8fafd 0%, #eef4ff 60%, #e8f5f0 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.page-hero-bar::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 196, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  padding: 48px 0 40px;
}

.page-breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.page-breadcrumb .breadcrumb-item a {
  color: var(--primary);
  font-weight: 600;
}
.page-breadcrumb .breadcrumb-item.active {
  color: var(--text-light);
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--border);
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  font-family: "Fraunces", serif;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.page-country-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.02em;
}
.canada-badge-color {
  background: #fff0ef;
  color: var(--canada);
  border: 1.5px solid #f9c5c2;
}
.australia-badge-color {
  background: #e8f4ff;
  color: var(--australia);
  border: 1.5px solid #b3d9f7;
}

.hero-title-accent {
  color: var(--canada);
  
}
.hero-title-accent-au {
  color: var(--australia);
  
}

.page-hero-icon-wrap {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border: 1px solid var(--border);
  margin-right: 20px;
}
.canada-icon-wrap {
  background: #fff8f7;
  border-color: #f9c5c2;
}
.australia-icon-wrap {
  background: #f0f8ff;
  border-color: #b3d9f7;
}

/* Country hero bars */
.canada-hero-bar {
  background: linear-gradient(135deg, #fff8f7 0%, #ffeeed 40%, #f8fafd 100%);
}
.australia-hero-bar {
  background: linear-gradient(135deg, #f0f8ff 0%, #e0f0fb 40%, #f8fafd 100%);
}

/* ---- Country Disclaimer Bar ---- */
.country-disclaimer-bar {
  background: #fffbf0;
  border-bottom: 1px solid #f0d06a;
  padding: 12px 0;
  font-size: 13px;
  color: #856404;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.country-disclaimer-bar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.country-disclaimer-bar a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* ---- Country Section ---- */
.country-section {
  padding: 60px 0;
  background: var(--white);
}
.bg-surface-alt {
  background: var(--surface) !important;
}

.country-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}

.country-section-h2 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.text-canada {
  color: var(--canada) !important;
}
.text-australia {
  color: var(--australia) !important;
}

/* Info highlight grid */
.info-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.info-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.ihi-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.au-ihi-icon {
  background: var(--australia-light);
  color: var(--australia);
}
.info-highlight-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
}
.info-highlight-item span {
  font-size: 12px;
  color: var(--text-light);
}

/* Check list */
.country-check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.country-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.country-check-list li:last-child {
  border-bottom: none;
}
.country-check-list li i {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}
.au-check-list li i {
  color: var(--australia);
}

/* Note box */
.country-note-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: #92400e;
  margin-top: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.country-note-box i {
  flex-shrink: 0;
  margin-top: 1px;
}
.au-note-box {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1e40af;
}

/* Doc items */
.doc-item-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  height: 100%;
  transition: border-color 0.2s;
}
.doc-item-card:hover {
  border-color: var(--primary);
}
.au-doc-card:hover {
  border-color: var(--australia);
}
.doc-item-card i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.au-doc-card i {
  color: var(--australia);
}
.doc-item-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
}
.doc-item-card span {
  font-size: 12px;
  color: var(--text-light);
}

/* Purpose tags */
.purpose-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.purpose-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(26, 86, 196, 0.2);
}
.au-purpose-tag {
  background: var(--australia-light);
  color: var(--australia);
  border-color: rgba(0, 109, 183, 0.2);
}

/* Comparison table */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 14px;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.ct-header {
  background: var(--surface);
  font-weight: 700;
}
.ct-row:not(.ct-header):nth-child(even) {
  background: #fafbfc;
}
.ct-cell {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.ct-cell:last-child {
  border-right: none;
}
.ct-row:last-child .ct-cell {
  border-bottom: none;
}
.au-badge {
  background: var(--australia-light);
  color: var(--australia);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.au-eta-badge {
  background: #f0fdf4;
  color: #166534;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

/* Country Sidebar */
.country-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-apply-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sac-header {
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  display: flex;
  align-items: center;
}
.canada-sac-header {
  background: var(--canada);
}
.au-sac-header {
  background: var(--australia);
}
.sac-body {
  padding: 22px;
}

.sac-price {
  font-size: 22px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.sac-price strong {
  color: var(--primary);
}
.sac-price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.sac-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.sac-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-dark);
}
.sac-features li:last-child {
  border-bottom: none;
}
.sac-features li i {
  color: #16a34a;
  font-size: 14px;
}

.sac-apply-btn {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 13px;
  border-radius: var(--radius-md);
  color: white;
  transition: all 0.2s;
  margin-bottom: 12px;
}
.canada-sac-btn {
  background: var(--canada);
}
.canada-sac-btn:hover {
  background: #b01e13;
  color: white;
}
.au-sac-btn {
  background: var(--australia);
}
.au-sac-btn:hover {
  background: #005799;
  color: white;
}

.sac-direct-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s;
}
.sac-direct-link:hover {
  color: var(--primary);
}

.sidebar-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.sidebar-info-card h6 {
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.sidebar-info-card p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0 0 12px;
}

.sidebar-link-btn {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--primary);
  padding: 8px 14px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  background: transparent;
}
.sidebar-link-btn:hover {
  background: var(--primary);
  color: white;
}
.au-link-btn {
  color: var(--australia);
  border-color: var(--australia);
}
.au-link-btn:hover {
  background: var(--australia);
  color: white;
}

/* Australia step variants */
.step-card-au:hover {
  border-color: var(--australia);
}
.step-num-au {
  background: var(--australia-light);
  color: var(--australia);
}
.step-icon-au {
  color: var(--australia);
}
.section-label-au {
  background: var(--australia-light);
  color: var(--australia);
}
.btn-au {
  background: var(--australia);
}
.btn-au:hover {
  background: #005799;
}

/* ==========================================
   POLICY PAGES
========================================== */
.policy-section {
  padding: 60px 0;
  background: var(--surface);
}

.policy-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}

.policy-intro-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 22px;
}
.policy-intro-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.policy-intro-text {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

.policy-section-title {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-section-title i {
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
}

.policy-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.policy-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px dashed var(--border);
  line-height: 1.6;
}
.policy-list li:last-child {
  border-bottom: none;
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
}

.policy-cta-bar {
  background: var(--primary-light);
  border: 1px solid rgba(26, 86, 196, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.policy-cta-bar h5 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Fraunces", serif;
  margin: 0;
}

/* About features */
.about-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  height: 100%;
}
.about-feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.about-feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 4px;
}
.about-feature-item p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
}

.govt-link-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.govt-link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.glc-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}
.canada-glc-header {
  background: linear-gradient(135deg, #d52b1e, #e85c52);
}
.australia-glc-header {
  background: linear-gradient(135deg, #006db7, #1a90d4);
}
.glc-header h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Fraunces", serif;
  color: white;
  margin: 0 0 4px;
}
.glc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
}
.au-glc-badge {
  background: rgba(255, 255, 255, 0.25);
}

.glc-body {
  padding: 22px 24px;
}
.glc-body p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.glc-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: background 0.15s;
}
.glc-link-row:hover {
  background: var(--primary-light);
}
.glc-link-row i {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}
.glc-link-row a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.glc-govt-fee {
  display: flex;
  align-items: center;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #15803d;
  margin-top: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.glc-govt-fee i {
  color: #16a34a;
}

/* Comparison table simple */
.comparison-simple-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 14px;
}
.cst-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--border);
}
.cst-row:last-child {
  border-bottom: none;
}
.cst-header {
  background: var(--surface);
  font-weight: 700;
  color: var(--text-dark);
}
.cst-row:not(.cst-header):nth-child(even) {
  background: #fafbfc;
}
.cst-cell {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cst-cell:last-child {
  border-right: none;
}
.highlight-col {
  background: #f0f7ff !important;
  color: var(--text-dark);
  font-weight: 600;
}
.cst-header .highlight-col {
  background: var(--primary-light) !important;
  color: var(--primary);
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-section {
  padding: 60px 0;
  background: var(--surface);
}

.contact-info-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.cip-title {
  font-size: 22px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin-bottom: 12px;
}
.cip-desc {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.cip-item:last-of-type {
  border-bottom: none;
}
.cip-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.cip-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 3px;
}
.cip-item a,
.cip-item span {
  font-size: 13px;
  color: var(--text-mid);
}
.cip-item a:hover {
  color: var(--primary);
}

.cip-countries h6 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 10px;
}
.cip-country-tag {
  display: table;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 50px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.cip-country-tag:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

/* .cip-disclaimer {
  font-size: 12px;
  color: #856404;
  background: #fffbf0;
  border: 1px solid #f0d06a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
} */

/* Contact form */
.contact-form-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.cfp-title {
  font-size: 22px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.cfp-desc {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.cf-field {
  display: flex;
  flex-direction: column;
}
.cf-field label {
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cf-field label span {
  color: #dc2626;
}
.cf-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background: white;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.cf-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 196, 0.1);
}
textarea.cf-input {
  resize: vertical;
}

.cf-privacy-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cf-privacy-note a {
  color: var(--primary);
  font-weight: 600;
}

.cf-spam-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-mid);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cf-spam-note i {
  color: var(--accent);
}

/* ==========================================
   PRICING PAGE
========================================== */
.pricing-intro-row {
  padding: 40px 0 20px;
}
.pricing-intro-row h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-family: "Fraunces", serif;
}
.pricing-intro-row p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.canada-pricing-card::before {
  background: linear-gradient(90deg, #d52b1e, #ff6b6b);
}
.australia-pricing-card::before {
  background: linear-gradient(90deg, #006db7, #00b4d8);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pc-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.pc-header h3 {
  font-size: 22px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  margin-bottom: 5px;
  flex: 1;
}
.pc-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
}
.au-type-badge {
  background: var(--australia-light);
  color: var(--australia);
}
.pc-price {
  text-align: right;
  flex-shrink: 0;
}
.pc-from {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 2px;
}
.pc-price strong {
  font-size: 26px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
}

.pc-body {
  padding: 20px 28px;
  flex: 1;
}
.pc-body p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.pc-features li:last-child {
  border-bottom: none;
}
.pc-features .bi-check-circle-fill {
  color: #16a34a;
  font-size: 15px;
}
.pc-features .au-check {
  color: var(--australia);
}

.pc-validity {
  display: flex;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.au-validity i {
  color: var(--australia);
}

.pc-footer {
  padding: 20px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-apply-btn {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 13px;
  border-radius: var(--radius-md);
  color: white;
  transition: all 0.2s;
}
.canada-pc-btn {
  background: var(--canada);
}
.canada-pc-btn:hover {
  background: #b01e13;
  color: white;
  transform: translateY(-1px);
}
.au-pc-btn {
  background: var(--australia);
}
.au-pc-btn:hover {
  background: #005799;
  color: white;
  transform: translateY(-1px);
}

.pc-learn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-mid);
  transition: color 0.2s;
}
.pc-learn-link:hover {
  color: var(--primary);
}

.included-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  height: 100%;
  transition: all 0.2s;
}
.included-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.included-item i {
  font-size: 26px;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.included-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 4px;
}
.included-item span {
  font-size: 12px;
  color: var(--text-light);
}

/* ==========================================
   RESPONSIVE INNER PAGES
========================================== */
@media (max-width: 991px) {
  .country-sidebar {
    position: static;
    margin-top: 24px;
  }
  .faq-sidebar-card {
    position: static;
  }
  .info-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .comparison-table .ct-row {
    grid-template-columns: 1fr;
  }
  .ct-cell {
    border-right: none;
  }
  .cst-row {
    grid-template-columns: 1fr;
  }
  .cst-cell {
    border-right: none;
  }
  .cst-header .cst-cell:not(:first-child) {
    display: none;
  }
}

@media (max-width: 767px) {
  .page-hero-content {
    padding: 36px 0 30px;
  }
  .page-hero-title {
    font-size: 30px;
  }
  .country-info-card,
  .policy-card,
  .contact-form-panel,
  .contact-info-panel {
    padding: 22px 18px;
  }
  .info-highlight-grid {
    grid-template-columns: 1fr;
  }
  .pc-header {
    flex-direction: column;
    gap: 10px;
  }
  .pc-price {
    text-align: left;
  }
  .policy-cta-bar {
    flex-direction: column;
  }
  .contact-section {
    padding: 40px 0;
  }
}

/* =============================================
   TERMS & CONDITIONS
============================================= */
.tc-hero {
  background: linear-gradient(135deg, #f8fafd 0%, #eef4ff 60%, #e8f5f0 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.tc-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 196, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.tc-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.tc-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 12px;
}
.tc-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.tc-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  font-family: "Fraunces", serif;
  color: var(--text-dark);
  margin: 0 0 16px;
  line-height: 1.15;
}

.tc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.tc-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
  transition: color 0.15s;
}
.tc-breadcrumb a:hover {
  color: var(--primary-dark);
}
.tc-breadcrumb i {
  font-size: 9px;
  color: var(--text-light);
}
.tc-breadcrumb span {
  color: var(--text-light);
  font-weight: 600;
}

.tc-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-light);
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  box-shadow: var(--shadow-sm);
}
.tc-last-updated i {
  color: var(--primary);
}

/* Body layout */
.tc-body {
  background: var(--surface);
  padding: 56px 0 80px;
}

.tc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- Sidebar ---- */
.tc-sidebar {
  position: sticky;
  top: 88px;
}

.tc-toc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tc-toc-heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.tc-toc-list {
  display: flex;
  flex-direction: column;
  padding: 8px;
}
.tc-toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  text-decoration: none;
  border-left: 2px solid transparent;
}
.tc-toc-list a:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.tc-toc-list a.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 700;
  border-left-color: var(--primary);
}

.tc-toc-num {
  font-size: 10px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-light);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  flex-shrink: 0;
  transition: all 0.15s;
}
.tc-toc-list a.active .tc-toc-num,
.tc-toc-list a:hover .tc-toc-num {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(26, 86, 196, 0.2);
}

.tc-toc-contact {
  padding: 14px 20px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.tc-toc-contact p {
  font-size: 12px;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0 0 8px;
  font-weight: 600;
}
.tc-toc-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--primary);
  transition: color 0.15s;
}
.tc-toc-contact a:hover {
  color: var(--primary-dark);
}

/* ---- Content area ---- */
.tc-content {
  min-width: 0;
}

/* Intro box */
.tc-intro-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}
.tc-intro-box p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}
.tc-intro-box p + p {
  margin-top: 12px;
}

/* Each section */
.tc-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  scroll-margin-top: 100px;
}
.tc-section:hover {
  box-shadow: var(--shadow-md);
}

.tc-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.tc-section-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  font-size: 17px;
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-section-head h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Fraunces", serif;
  color: var(--text-dark);
  margin: 0;
}

.tc-section p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 16px;
}
.tc-section p:last-child {
  margin-bottom: 0;
}

.tc-section a {
  color: var(--primary);
  font-weight: 700;
}
.tc-section a:hover {
  text-decoration: underline;
}

/* TC list */
.tc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.1s;
}
.tc-list li:last-child {
  border-bottom: none;
}
.tc-list li:hover {
  background: white;
}
.tc-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.tc-list li p {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

/* Info/warning boxes */
.tc-info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #eff8ff;
  border: 1.5px solid #b3d9f5;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 16px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.tc-info-box.warning {
  background: #fffbf0;
  border-color: rgba(232, 160, 32, 0.3);
}
.tc-info-box i {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary);
}
.tc-info-box.warning i {
  color: #c9800a;
}
.tc-info-box p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin: 0 !important;
  line-height: 1.7;
}
.tc-info-box.warning p {
  color: #6b4700;
}

/* Sub-label */
.tc-sublabel {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-sublabel::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  opacity: 0.4;
}

/* Contact block */
.tc-contact-block {
  background: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.tc-contact-text h3 {
  font-size: 22px;
  font-family: "Fraunces", serif;
  color: white;
  margin: 0 0 6px;
}
.tc-contact-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.tc-contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tc-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  text-decoration: none;
}
.tc-contact-item.email {
  background: var(--primary);
  color: white;
}
.tc-contact-item.email:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}
.tc-contact-item.web {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.tc-contact-item.web:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .tc-layout {
    grid-template-columns: 1fr;
  }
  .tc-sidebar {
    position: static;
  }
  .tc-toc-card {
    display: none;
  } 
}
@media (max-width: 767px) {
  .tc-hero {
    padding: 40px 0 32px;
  }
  .tc-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tc-body {
    padding: 36px 0 56px;
  }
  .tc-section {
    padding: 22px 20px;
  }
  .tc-intro-box {
    padding: 22px 20px;
  }
  .tc-section-head h2 {
    font-size: 18px;
  }
  .tc-contact-block {
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-contact-links {
    flex-direction: column;
    width: 100%;
  }
  .tc-contact-item {
    justify-content: center;
  }
}
