:root {
  --blue:   #1a73e8;
  --sky:    #38b6ff;
  --navy:   #0f2a5e;
  --bg:     #f8faff;
  --dark:   #071540;
  --muted:  #5a7ba8;
  --border: #e8f0fe;
  --white:  #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a   { text-decoration: none; }

::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: #f0f4ff; }
::-webkit-scrollbar-thumb { background: #a8c4f0; border-radius: 3px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1.65rem;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,115,232,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,115,232,.45); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: var(--white);
  padding: .875rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
  font-family: inherit;
}
.btn-wa:hover { transform: translateY(-2px); }

.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #229ED9;
  color: var(--white);
  padding: .875rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 4px 16px rgba(34,158,217,.4);
  transition: transform .2s;
  font-family: inherit;
}
.btn-tg:hover { transform: translateY(-2px); }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-badge-glass {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title-white {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc       { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.section-desc-white { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(26,115,232,.1);
}

.navbar .logo-dark  { display: none; }
.navbar .logo-light { display: block; }
.navbar.scrolled .logo-dark  { display: block; }
.navbar.scrolled .logo-light { display: none; }
.navbar img { height: 44px; width: auto; object-fit: contain; }

.nav-links { display: none; gap: 1.75rem; align-items: center; }
.nav-cta   { display: none; gap: .75rem;  align-items: center; }

.nav-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--white);
  transition: width .25s;
  border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--navy); }
.navbar.scrolled .nav-link::after { background: var(--sky); }
.navbar.scrolled .nav-link:hover { color: var(--blue); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
}
.navbar.scrolled .nav-phone { color: var(--blue); }

.mob-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: .25rem;
}
.navbar.scrolled .mob-toggle { color: var(--navy); }

.mob-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}
.mob-menu.open { display: flex; }

.mob-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.mob-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(148deg, #071540 0%, #0f3098 40%, #1a6fd4 70%, #38b6ff 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
}
.hero-bg1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: rgba(56,182,255,.1);
  pointer-events: none;
}
.hero-bg2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.14);
  border-radius: 50px;
  padding: .45rem .9rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge span { color: var(--white); font-size: .82rem; font-weight: 600; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title-grad {
  background: linear-gradient(90deg, var(--white), #9dd4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats   { display: flex; gap: 2rem; margin-top: 2.75rem; flex-wrap: wrap; }
.hero-stat    { display: flex; align-items: center; gap: .45rem; }
.hero-stat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }
.hero-stat span { color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 600; }

.hero-card {
  background: rgba(255,255,255,.97);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.hero-card-title    { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.hero-card-subtitle { color: var(--muted); font-size: .875rem; margin-bottom: 1.6rem; }
.hero-card-socials  { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.4rem; }
.hero-card-socials a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
}

.hero-flags { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.hero-flag  { position: absolute; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.hero-flag img { border-radius: 50%; object-fit: cover; }

@keyframes fl0 { 0%,100% { transform: translateY(0); }  50% { transform: translateY(-12px); } }
@keyframes fl1 { 0%,100% { transform: translateY(0); }  50% { transform: translateY(-18px); } }
@keyframes fl2 { 0%,100% { transform: translateY(0); }  50% { transform: translateY(-8px);  } }

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

.form { display: flex; flex-direction: column; gap: .9rem; }
.fi {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid #d6e4f7;
  border-radius: 12px;
  font-size: .93rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.fi:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(56,182,255,.15); }
.fi::placeholder { color: #94afd4; }
textarea.fi { resize: vertical; }

.form-ok  { display: none; text-align: center; font-weight: 600; font-size: .875rem; padding: .75rem; border-radius: 10px; color: #22c55e; background: #f0fdf4; }
.form-err { display: none; text-align: center; font-weight: 600; font-size: .875rem; padding: .75rem; border-radius: 10px; color: #ef5350; background: #fff5f5; }

.stats-section { padding: 5rem 1.5rem; background: var(--bg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,115,232,.08);
  border: 1.5px solid var(--border);
  transition: transform .3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon  { color: var(--blue); margin-bottom: .7rem; display: flex; justify-content: center; }
.stat-value { font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--muted); margin-top: .35rem; font-weight: 500; }

.visa-section { padding: 5.5rem 1.5rem; background: linear-gradient(180deg, #f0f6ff, #e8f2ff); }
.visa-section-head { text-align: center; margin-bottom: 3.5rem; }
.visa-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.visa-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  transition: all .3s;
  box-shadow: 0 2px 12px rgba(26,115,232,.06);
  text-decoration: none;
  display: block;
}
.visa-card:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 32px rgba(56,182,255,.18);
  transform: translateY(-4px);
}
.visa-card-head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.visa-card-head img { border-radius: 50%; object-fit: cover; width: 36px; height: 36px; }
.visa-card-country { font-weight: 800; color: var(--navy); font-size: 1rem; }
.visa-card-count   { font-size: .72rem; color: #94afd4; }
.visa-type-item    { display: flex; align-items: center; gap: .45rem; font-size: .875rem; color: #3d6194; margin-bottom: .45rem; }
.visa-type-dot     { width: 5px; height: 5px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }

.services-section { padding: 5.5rem 1.5rem; background: var(--bg); }
.services-head    { text-align: center; margin-bottom: 3.5rem; }
.services-grid    { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.svc-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border);
  transition: all .3s;
  box-shadow: 0 2px 12px rgba(26,115,232,.05);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { box-shadow: 0 12px 40px rgba(26,115,232,.14); transform: translateY(-5px); border-color: #c5daff; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f2ff, #d0e7ff);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.svc-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .7rem; }
.svc-desc  { color: var(--muted); line-height: 1.7; font-size: .9rem; }

.why-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(148deg, #071540 0%, #0f3098 50%, #1a6fd4 100%);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  top: -100px; right: -60px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(56,182,255,.08);
  pointer-events: none;
}
.why-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.why-head  { text-align: center; margin-bottom: 3.5rem; }
.why-grid  { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.why-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.6rem;
  background: rgba(255,255,255,.08);
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all .3s;
  backdrop-filter: blur(12px);
}
.why-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); }
.why-icon  { color: var(--sky); flex-shrink: 0; }
.why-title { font-weight: 800; color: var(--white); margin-bottom: .45rem; }
.why-desc  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.65; }
.why-flags { margin-top: 3.5rem; text-align: center; }
.why-flags-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.why-flag-item { opacity: .55; transition: opacity .2s; }
.why-flag-item:hover { opacity: 1; }
.why-flags-note { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: .75rem; }

.blog-section { padding: 6rem 1.5rem; background: linear-gradient(180deg, #f0f6ff, var(--bg)); }
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,115,232,.06);
  transition: all .3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(26,115,232,.14); transform: translateY(-5px); }
.blog-card-img {
  height: 170px;
  background: linear-gradient(135deg, #071540, #1a73e8);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img-circle {
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(56,182,255,.18);
}
.blog-card-img-inner { position: relative; z-index: 1; text-align: center; color: var(--white); }
.blog-card-date { color: rgba(255,255,255,.45); font-size: .72rem; margin-top: .5rem; }
.blog-card-body { padding: 1.4rem; }
.blog-tag { display: inline-block; background: #e8f2ff; color: var(--blue); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 50px; margin-bottom: .7rem; }
.blog-card-title { font-weight: 800; color: var(--navy); font-size: 1rem; line-height: 1.4; margin-bottom: .65rem; }
.blog-card-desc  { color: var(--muted); font-size: .875rem; line-height: 1.65; }
.blog-card-read  { display: flex; align-items: center; gap: .25rem; color: var(--blue); font-size: .875rem; font-weight: 700; margin-top: 1rem; }

.cta-section { padding: 5rem 1.5rem; background: var(--bg); }
.cta-box {
  background: linear-gradient(135deg, #071540 0%, #1a4db5 50%, #38b6ff 100%);
  border-radius: 32px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,115,232,.3);
  max-width: 900px;
  margin: 0 auto;
}
.cta-bg1 { position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-bg2 { position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(56,182,255,.12); }
.cta-inner  { position: relative; z-index: 1; }
.cta-title  { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-desc   { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.contact-section { padding: 6rem 1.5rem; background: linear-gradient(180deg, #f0f6ff, #e8f2ff); }
.contact-head { text-align: center; margin-bottom: 3.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.contact-info-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.75rem; }
.contact-info-list  { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; padding: 1.2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,115,232,.06);
  transition: border-color .2s;
}
.contact-info-item:hover { border-color: var(--sky); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f2ff, #d0e7ff);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.contact-info-label { font-size: .7rem; color: #94afd4; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-value { font-weight: 700; color: var(--navy); margin-top: .15rem; }
.contact-social-row { display: flex; gap: .7rem; margin-top: 1.75rem; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(26,115,232,.08);
  transition: transform .2s;
  text-decoration: none;
}
.social-btn:hover { transform: translateY(-2px); }
.contact-form-card {
  background: var(--white);
  border-radius: 24px; padding: 2.5rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(26,115,232,.1);
}
.contact-form-title { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 1.6rem; }

.footer {
  background: linear-gradient(148deg, #040e2e, #0a1f5c);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner   { max-width: 1200px; margin: 0 auto; }
.footer-grid    { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo    { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.75; max-width: 270px; }
.footer-social-row { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: all .2s;
}
.footer-social-btn:hover { background: rgba(56,182,255,.3); color: var(--white); }
.footer-col-title { font-weight: 700; margin-bottom: 1.2rem; color: var(--white); }
.footer-link { display: block; color: rgba(255,255,255,.5); font-size: .875rem; text-decoration: none; margin-bottom: .7rem; transition: color .2s; }
.footer-link:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,.35); font-size: .8rem; }

.page-hero {
  background: linear-gradient(148deg, #071540 0%, #0f3098 50%, #1a6fd4 100%);
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(56,182,255,.08);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.page-hero-desc { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 600px; }

.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep     { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: var(--white); }

.page-body { padding: 5rem 1.5rem; background: var(--bg); }
.page-body-inner { max-width: 1100px; margin: 0 auto; }
.page-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.sidebar { align-self: stretch; }
.sidebar-form-sticky { position: sticky; top: 90px; z-index: 2; }

.info-card {
  background: var(--white);
  border-radius: 24px; padding: 2.5rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 28px rgba(26,115,232,.08);
  margin-bottom: 2rem;
}
.info-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin: 1.75rem 0 .75rem; }
.info-card h2:first-child { margin-top: 0; }
.info-card p  { color: #3d6194; line-height: 1.85; font-size: .97rem; margin-bottom: .75rem; }
.info-card ul { padding-left: 1.4rem; margin-bottom: .75rem; }
.info-card ul li { color: #3d6194; line-height: 1.9; font-size: .97rem; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
.step-card {
  background: var(--white);
  border-radius: 20px; padding: 1.5rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,115,232,.06);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all .3s;
}
.step-card:hover { border-color: var(--sky); box-shadow: 0 8px 32px rgba(56,182,255,.14); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title { font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.step-desc  { color: var(--muted); font-size: .9rem; line-height: 1.6; }

.price-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
.price-card {
  background: var(--white);
  border-radius: 20px; padding: 1.75rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,115,232,.06);
  transition: all .3s;
  text-align: center;
}
.price-card:hover { border-color: var(--sky); box-shadow: 0 8px 32px rgba(56,182,255,.14); transform: translateY(-4px); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 8px 32px rgba(26,115,232,.16); position: relative; }
.price-featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white); font-size: .72rem; font-weight: 700;
  padding: .25rem .8rem; border-radius: 50px;
  white-space: nowrap;
}
.price-type   { font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: .75rem; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-cur    { font-size: 1rem; vertical-align: super; margin-right: .1rem; }
.price-days   { font-size: .82rem; color: var(--muted); margin-top: .5rem; }

.doc-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-bottom: 2rem; }
.doc-item {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-size: .9rem; font-weight: 600; color: var(--navy);
}
.doc-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sidebar-fact-label { color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: .35rem; }

.faq-item { background: var(--white); border-radius: 16px; border: 1.5px solid var(--border); overflow: hidden; margin-bottom: .75rem; }
.faq-btn  {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .97rem; color: var(--navy);
  text-align: left; gap: 1rem;
}
.faq-icon { flex-shrink: 0; transition: transform .2s; color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: #3d6194; font-size: .95rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

.sidebar-card {
  background: var(--white);
  border-radius: 24px; padding: 2rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(26,115,232,.08);
  margin-bottom: 1.5rem;
}
.sidebar-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 1.25rem; }

@media (min-width: 480px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
}

.country-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; margin-top: .75rem; }
.country-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
}

.notice-warn {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #78350f;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.notice-warn svg { flex-shrink: 0; margin-top: .15rem; color: #f59e0b; }

.notice-tip {
  background: #eff6ff;
  border: 1.5px solid #93c5fd;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #1e3a5f;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.notice-tip svg { flex-shrink: 0; margin-top: .15rem; color: var(--blue); }

.page-section-title { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1.25rem; }
.flag-hero { border-radius: 15px; display: block; flex-shrink: 0; }

.vtype-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
.vtype-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,115,232,.06);
  transition: all .3s;
}
.vtype-card:hover { border-color: var(--sky); box-shadow: 0 6px 24px rgba(56,182,255,.14); transform: translateY(-2px); }
.vtype-card-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; }
.vtype-icon  { width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,#e8f2ff,#d0e7ff);display:flex;align-items:center;justify-content:center;color:var(--blue);flex-shrink:0; }
.vtype-title { font-weight: 800; color: var(--navy); font-size: .97rem; }
.vtype-desc  { color: var(--muted); font-size: .875rem; line-height: 1.65; }

.sidebar-facts { display: flex; flex-direction: column; gap: .75rem; }
.sidebar-fact { display: flex; justify-content: space-between; align-items: center; padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact-val { font-weight: 700; color: var(--navy); text-align: right; }

@media (min-width: 480px) {
  .vtype-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .mob-toggle { display: none; }

  .hero-grid      { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .stats-grid     { grid-template-columns: repeat(4, 1fr); }
  .visa-grid      { grid-template-columns: repeat(3, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(3, 1fr); }
  .contact-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .page-grid      { grid-template-columns: 1fr 380px; }
  .price-grid     { grid-template-columns: repeat(4, 1fr); }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
}

.visa-explore { background: var(--white); border-top: 1.5px solid var(--border); padding: 3.5rem 0 2.5rem; }
.visa-explore-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.visa-explore-title { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.visa-explore-sub { color: var(--muted); font-size: .92rem; margin-bottom: 2rem; }
.visa-explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 2.5rem; }
.visa-explore-card { display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem; border-radius: 14px; border: 1.5px solid var(--border); background: var(--bg); color: var(--navy); font-weight: 600; font-size: .9rem; transition: border-color .2s, box-shadow .2s, background .2s; }
.visa-explore-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(26,115,232,.1); background: var(--white); }
.visa-explore-card img { width: 36px; height: 24px; border-radius: 4px; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.visa-explore-card span { flex: 1; }
.visa-explore-card svg { color: var(--muted); flex-shrink: 0; }
.visa-pager { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1.5px solid var(--border); padding-top: 2rem; }
.visa-pager-btn { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.5rem; border-radius: 14px; border: 1.5px solid var(--border); background: var(--white); color: var(--navy); font-weight: 700; font-size: .92rem; transition: all .2s; }
.visa-pager-btn:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 4px 16px rgba(26,115,232,.1); }
.visa-pager-btn.disabled { opacity: .35; pointer-events: none; }
.visa-pager-btn.next { margin-left: auto; }
@media (min-width: 600px) { .visa-explore-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .visa-explore-grid { grid-template-columns: repeat(4, 1fr); } }
