/* =========================
   RESET & VARIABLES
========================= */

 :root {
  --bg-main: #f7f6f3;
  --bg-soft: #ffffff;
  --bg-ice: rgba(247, 248, 251, 0.9);

  --text-main: #1f1f1f;
  --text-muted: #6f6f6f;

  --beige: #e8dfd3;
  --accent: #5b5bff;
  --accent-deep: #3e3ee6;

  --border-soft: rgba(0,0,0,0.08);
  --shadow-soft: 0 20px 50px rgba(0,0,0,0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 22px;

  --font-display: "Space Grotesk", "Manrope", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

html.dark-mode {
  --bg-main: #0b0c10;
  --bg-soft: #111319;
  --bg-ice: rgba(16, 18, 24, 0.9);
  --text-main: #f5f6fb;
  --text-muted: #b5bccd;
  --beige: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255,255,255,0.1);
  --shadow-soft: 0 20px 50px rgba(0,0,0,0.6);
}

/* =========================
   PAGE LOADER
========================= */

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-loader.is-active {
  opacity: 1;
  pointer-events: auto;
}

.loader-text {
  font-family: "Open Sans", "Manrope", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(70px, 14vw, 180px);
  letter-spacing: 0.18em;
  color: #111217;
  animation: loader-glimmer 1.2s ease infinite;
}

@keyframes loader-glimmer {
  0% { text-shadow: 0 0 0 rgba(0,0,0,0.15); opacity: 0.9; }
  50% { text-shadow: 0 0 26px rgba(0,0,0,0.35); opacity: 1; }
  100% { text-shadow: 0 0 0 rgba(0,0,0,0.15); opacity: 0.9; }
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1440px;
  z-index: 1000;
}

.navbar-inner {
  height: 62px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

html.dark-mode .navbar-inner {
  background: rgba(10, 12, 18, 0.85);
}

.logo {
  display: flex;
  align-items: center;
  height: 62px;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 29px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(91, 91, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.theme-toggle-fab {
  position: fixed;
  right: 24px;
  top: 16px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1850;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (max-width: 900px) {
  .theme-toggle-fab {
    top: 12px;
    width: 54px;
    height: 54px;
  }
}

.theme-toggle-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.theme-toggle-fab .sun,
.theme-toggle-fab .moon {
  position: absolute;
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-fab .moon {
  opacity: 0;
  transform: scale(0.6);
}

html.dark-mode .theme-toggle-fab {
  background: rgba(14, 16, 22, 0.92);
  border-color: var(--border-soft);
  color: var(--text-main);
}

html.dark-mode .theme-toggle-fab .sun {
  opacity: 0;
  transform: scale(0.6);
}

html.dark-mode .theme-toggle-fab .moon {
  opacity: 1;
  transform: scale(1);
}

.cta-btn:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(91, 91, 255, 0.3);
}

.ghost-btn {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.cta-btn,
.ghost-btn {
  color: #ffffff;
}

html.dark-mode .ghost-btn {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.page-shell {
  padding: 0 0 60px;
}

.visa-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  margin-bottom: 110px;
}

.pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.visa-hero-content h1,
.visa-hero-content p {
  color: #ffffff;
}

.visa-hero-content p {
  opacity: 0.9;
}

.visa-hero h1 {
  font-size: clamp(54px, 6.8vw, 98px);
  margin-bottom: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  word-break: keep-all;
  hyphens: none;
}

.visa-hero .hero-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.visa-hero .hero-line {
  display: block;
  white-space: nowrap;
}

.visa-hero-content p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.visa-hero .hero-actions {
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.visa-hero .cta-btn,
.visa-hero .ghost-btn {
  border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .visa-hero h1 {
    font-size: clamp(42px, 7vw, 64px);
  }
}

@media (max-width: 700px) {
  .visa-hero h1 {
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.08;
  }

  .visa-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .visa-hero .hero-actions .cta-btn,
  .visa-hero .hero-actions .ghost-btn {
    width: 100%;
  }
}

.visa-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.visa-highlight {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  z-index: 1;
}

.visa-highlight.visa-word {
  font-weight: 800;
}

.visa-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.9em;
  background: linear-gradient(90deg, #0b0b0b 0%, #c28b1a 52%, #f7e1a2 100%);
  border-radius: 8px;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  animation: visa-reveal 720ms ease-out forwards, visa-glow 520ms ease-out 760ms forwards;
}

.visa-highlight::after {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-80%);
  border-radius: 10px;
  z-index: -1;
  animation: visa-shimmer 600ms ease-out 820ms forwards;
}

@keyframes visa-reveal {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes visa-glow {
  0% { box-shadow: 0 0 0 rgba(241, 210, 140, 0); }
  100% { box-shadow: 0 0 22px rgba(246, 222, 155, 0.45); }
}

@keyframes visa-shimmer {
  0% { opacity: 0; transform: translateX(-80%); }
  30% { opacity: 0.4; }
  100% { opacity: 0; transform: translateX(80%); }
}

.visa-hero p {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 34px;
  text-shadow: 0 10px 28px rgba(0,0,0,0.5);
  font-size: 20px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.visa-hero .cta-btn,
.visa-hero .ghost-btn {
  height: 48px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  display: none;
}

.visa-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin: 0 auto;
  color: #ffffff;
  text-shadow: 0 12px 35px rgba(0,0,0,0.55);
}

html.dark-mode .visa-hero-content {
  color: #ffffff;
}

.visa-hero-content .hero-actions {
  justify-content: center;
}

/* =========================
   INFO
========================= */

.visa-info {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.visa-extra {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  gap: 24px;
}

.visa-info,
.visa-extra {
  padding: 0 24px;
}

.visa-extra-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

html.dark-mode .visa-extra-card,
html.dark-mode .benefit-card,
html.dark-mode .process-card,
html.dark-mode .detail-item,
html.dark-mode .faq-item {
  background: rgba(14, 16, 22, 0.95);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-soft);
}

html.dark-mode .process-card li {
  background: rgba(18, 20, 28, 0.9);
  border-color: var(--border-soft);
}

html.dark-mode .process-card li:hover {
  background: rgba(91, 91, 255, 0.12);
  border-color: rgba(91, 91, 255, 0.4);
  color: #f5f7fa;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

html.dark-mode .visa-points li {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-soft);
}

.visa-extra-card.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.visa-extra-card img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.visa-extra-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 17px;
}

.visa-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.visa-info-text {
  transform: translateX(-16px);
}

.visa-info-media {
  transform: translateX(16px);
}

.visa-info-text h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.visa-info-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
  font-size: 17px;
}

.visa-points {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.visa-points li {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-soft);
  font-weight: 600;
}

.visa-info-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.visa-info-media img:hover,
.visa-extra-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

/* =========================
   BENEFITS
========================= */

.visa-benefits {
  max-width: 1200px;
  margin: 0 auto 110px;
}

.visa-benefits h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(0,0,0,0.5);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card img {
  width: 32px;
  margin-bottom: 14px;
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 16px;
}

/* =========================
   PROCESS
========================= */

.visa-process {
  max-width: 1200px;
  margin: 0 auto 110px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.process-grid p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 18px 0 22px;
  font-size: 17px;
}

.process-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.process-card ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.process-card li {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.process-card li:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  background: rgba(91, 91, 255, 0.08);
  border-color: rgba(91, 91, 255, 0.35);
  color: #1f1f1f;
  font-weight: 600;
}

/* =========================
   DETAILS
========================= */

.visa-details {
  max-width: 1200px;
  margin: 0 auto 96px;
}

.visa-details h2 {
  font-size: 36px;
  margin-bottom: 22px;
}

.detail-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 20px;
  margin-bottom: 14px;
}

.detail-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail-item summary::-webkit-details-marker {
  display: none;
}

.detail-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  font-size: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.detail-item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.4s ease;
}

.detail-item[open] summary::after {
  transform: rotate(45deg);
}

.detail-item[open] p {
  max-height: 260px;
  opacity: 1;
}

.apply-row {
  margin-top: 22px;
}

/* =========================
   FAQ
========================= */

.visa-faq {
  max-width: 1200px;
  margin: 0 auto 110px;
}

.visa-faq h2 {
  font-size: 36px;
  margin-bottom: 26px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.faq-item p {
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
  font-size: 16px;
}

/* =========================
   FOOTER
========================= */

.deblock-footer {
  background: #000000;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 90px 24px 50px;
  color: #ffffff;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  align-content: start;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================
   RADIUS REFINEMENT
========================= */

.navbar-inner,
.visa-extra-card,
.benefit-card,
.process-card,
.detail-item,
.faq-item,
.deblock-footer,
.footer-top,
.footer-bottom,
.visa-info-media img,
.visa-extra-card img,
.golden-visa-media,
.golden-visa-media img {
  border-radius: var(--radius-lg);
}

.cta-btn,
.ghost-btn,
.pill,
.theme-toggle-fab,
.floating-participate a {
  border-radius: var(--radius-pill);
}

.process-card li,
.visa-points li {
  border-radius: var(--radius-md);
}

/* =========================
   FLOATING PARTICIPATE
========================= */

.floating-participate {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  animation: float-in 0.6s ease;
}

.floating-participate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(91, 91, 255, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.floating-participate a:hover {
  transform: translateY(-3px);
  background: var(--accent-deep);
  box-shadow: 0 20px 36px rgba(91, 91, 255, 0.34);
}

@keyframes float-in {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .visa-info-grid,
  .process-grid,
  .visa-extra-card,
  .visa-extra-card.reverse {
    grid-template-columns: 1fr;
  }

  .visa-info-text,
  .visa-info-media {
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .navbar-inner {
    padding: 0 18px;
  }

  .page-shell {
    padding: 110px 20px 40px;
  }
}


.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

    .page-loader.is-active {
        opacity: 1;
        pointer-events: auto;
    }

/* !!!!! **INLINE: Logo-based loader style added.** */
.loader-logo img {
    height: clamp(70px, 14vw, 180px);
    width: auto;
    display: block;
    animation: loader-glimmer 1.5s ease infinite;
}

@keyframes loader-glimmer {
    0% {
        filter: drop-shadow(0 0 0 rgba(0,0,0,0.15));
        opacity: 0.9;
    }

    50% {
        filter: drop-shadow(0 0 26px rgba(0,0,0,0.35));
        opacity: 1;
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(0,0,0,0.15));
        opacity: 0.9;
    }
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1440px;
    z-index: 1000;
}

.navbar-inner {
    height: 82px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-md);
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

html.dark-mode .navbar-inner {
    background: rgba(10, 12, 18, 0.85);
}

.logo {
    display: flex;
    align-items: center;
    height: 82px;
}

    .logo a {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-main);
        font-size: 15px;
        font-weight: 500;
        opacity: 0.85;
        transition: opacity 0.3s ease, color 0.3s ease;
    }

        .nav-links a:hover {
            opacity: 1;
            color: var(--accent-deep);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-btn {
    background: transparent;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cta-btn {
    background: var(--accent);
    color: #fff;
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(91, 91, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.theme-toggle-fab {
    position: fixed;
    right: 24px;
    top: 16px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1850;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (max-width: 900px) {
    .theme-toggle-fab {
        top: 12px;
        width: 54px;
        height: 54px;
    }
}

.theme-toggle-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.theme-toggle-fab .sun,
.theme-toggle-fab .moon {
    position: absolute;
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-fab .moon {
    opacity: 0;
    transform: scale(0.6);
}

html.dark-mode .theme-toggle-fab {
    background: rgba(14, 16, 22, 0.92);
    border-color: var(--border-soft);
    color: var(--text-main);
}

    html.dark-mode .theme-toggle-fab .sun {
        opacity: 0;
        transform: scale(0.6);
    }

    html.dark-mode .theme-toggle-fab .moon {
        opacity: 1;
        transform: scale(1);
    }

.cta-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(91, 91, 255, 0.3);
}

.ghost-btn {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.6);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.cta-btn,
.ghost-btn {
    color: #ffffff;
}

html.dark-mode .ghost-btn {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.6);
    color: #ffffff;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.page-shell {
    padding: 0 0 60px;
}

.visa-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
    margin-bottom: 110px;
}

.pill {
    display: inline-block;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.visa-hero-content h1,
.visa-hero-content p {
    color: #ffffff;
}

.visa-hero-content p {
    opacity: 0.9;
}

.visa-hero h1 {
    font-size: clamp(54px, 6.8vw, 98px);
    margin-bottom: 26px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
    hyphens: none;
}

.visa-hero .hero-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.visa-hero .hero-line {
    display: block;
    white-space: nowrap;
}

.visa-hero-content p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.visa-hero .hero-actions {
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.visa-hero .cta-btn,
.visa-hero .ghost-btn {
    border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
    .visa-hero h1 {
        font-size: clamp(42px, 7vw, 64px);
    }
}

@media (max-width: 700px) {
    .visa-hero h1 {
        font-size: clamp(34px, 8vw, 48px);
        line-height: 1.08;
    }

    .visa-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .visa-hero .hero-actions .cta-btn,
        .visa-hero .hero-actions .ghost-btn {
            width: 100%;
        }
}

.visa-title {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.visa-highlight {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    z-index: 1;
}

    .visa-highlight.visa-word {
        font-weight: 800;
    }

    .visa-highlight::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.08em;
        height: 0.9em;
        background: linear-gradient(90deg, #0b0b0b 0%, #c28b1a 52%, #f7e1a2 100%);
        border-radius: 8px;
        transform: scaleX(0);
        transform-origin: left;
        z-index: -1;
        animation: visa-reveal 720ms ease-out forwards, visa-glow 520ms ease-out 760ms forwards;
    }

    .visa-highlight::after {
        content: "";
        position: absolute;
        inset: -3px;
        background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 48%, transparent 100%);
        opacity: 0;
        transform: translateX(-80%);
        border-radius: 10px;
        z-index: -1;
        animation: visa-shimmer 600ms ease-out 820ms forwards;
    }

@keyframes visa-reveal {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes visa-glow {
    0% {
        box-shadow: 0 0 0 rgba(241, 210, 140, 0);
    }

    100% {
        box-shadow: 0 0 22px rgba(246, 222, 155, 0.45);
    }
}

@keyframes visa-shimmer {
    0% {
        opacity: 0;
        transform: translateX(-80%);
    }

    30% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateX(80%);
    }
}

.visa-hero p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 34px;
    text-shadow: 0 10px 28px rgba(0,0,0,0.5);
    font-size: 20px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.visa-hero .cta-btn,
.visa-hero .ghost-btn {
    height: 48px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 700;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.visa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 0 12px 35px rgba(0,0,0,0.55);
}

html.dark-mode .visa-hero-content {
    color: #ffffff;
}

.visa-hero-content .hero-actions {
    justify-content: center;
}

/* =========================
   INFO
========================= */

.visa-info {
    max-width: 1200px;
    margin: 0 auto 56px;
}

.visa-extra {
    max-width: 1200px;
    margin: 0 auto 64px;
    display: grid;
    gap: 24px;
}

.visa-info,
.visa-extra {
    padding: 0 24px;
}

.visa-extra-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

html.dark-mode .visa-extra-card,
html.dark-mode .benefit-card,
html.dark-mode .process-card,
html.dark-mode .detail-item,
html.dark-mode .faq-item {
    background: rgba(14, 16, 22, 0.95);
    border-color: var(--border-soft);
    box-shadow: var(--shadow-soft);
}

    html.dark-mode .process-card li {
        background: rgba(18, 20, 28, 0.9);
        border-color: var(--border-soft);
    }

        html.dark-mode .process-card li:hover {
            background: rgba(91, 91, 255, 0.12);
            border-color: rgba(91, 91, 255, 0.4);
            color: #f5f7fa;
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
        }

html.dark-mode .visa-points li {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-soft);
}

.visa-extra-card.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.visa-extra-card img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.visa-extra-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 17px;
}

.visa-info-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.visa-info-text {
    transform: translateX(-16px);
}

.visa-info-media {
    transform: translateX(16px);
}

.visa-info-text h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.visa-info-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 560px;
    font-size: 17px;
}

.visa-points {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

    .visa-points li {
        padding: 10px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid var(--border-soft);
        font-weight: 600;
    }

.visa-info-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

    .visa-info-media img:hover,
    .visa-extra-card img:hover {
        transform: scale(1.05);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
    }

/* =========================
   BENEFITS
========================= */

.visa-benefits {
    max-width: 1200px;
    margin: 0 auto 110px;
}

    .visa-benefits h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .benefit-card::after {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 48px rgba(0,0,0,0.5);
    }

        .benefit-card:hover::after {
            opacity: 1;
        }

    .benefit-card img {
        width: 32px;
        margin-bottom: 14px;
    }

    .benefit-card p {
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 16px;
    }

/* =========================
   PROCESS
========================= */

.visa-process {
    max-width: 1200px;
    margin: 0 auto 110px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

    .process-grid p {
        color: var(--text-muted);
        line-height: 1.7;
        margin: 18px 0 22px;
        font-size: 17px;
    }

.process-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

    .process-card ul {
        list-style: none;
        margin-top: 14px;
        display: grid;
        gap: 10px;
    }

    .process-card li {
        padding: 10px 12px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid var(--border-soft);
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

        .process-card li:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
            background: rgba(91, 91, 255, 0.08);
            border-color: rgba(91, 91, 255, 0.35);
            color: #1f1f1f;
            font-weight: 600;
        }

/* =========================
   DETAILS
========================= */

.visa-details {
    max-width: 1200px;
    margin: 0 auto 96px;
}

    .visa-details h2 {
        font-size: 36px;
        margin-bottom: 22px;
    }

.detail-item {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 18px 20px;
    margin-bottom: 14px;
}

    .detail-item summary {
        font-weight: 700;
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .detail-item summary::-webkit-details-marker {
            display: none;
        }

    .detail-item p {
        color: var(--text-muted);
        line-height: 1.7;
        margin-top: 12px;
        font-size: 16px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    .detail-item summary::after {
        content: "+";
        font-size: 18px;
        color: var(--text-muted);
        transition: transform 0.4s ease;
    }

    .detail-item[open] summary::after {
        transform: rotate(45deg);
    }

    .detail-item[open] p {
        max-height: 260px;
        opacity: 1;
    }

.apply-row {
    margin-top: 22px;
}

/* =========================
   FAQ
========================= */

.visa-faq {
    max-width: 1200px;
    margin: 0 auto 110px;
}

    .visa-faq h2 {
        font-size: 36px;
        margin-bottom: 26px;
    }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

    .faq-item p {
        color: var(--text-muted);
        margin-top: 8px;
        line-height: 1.6;
        font-size: 16px;
    }

/* =========================
   FOOTER
========================= */

/* !!!!! **INLINE: Footer class renamed to REALIS version.** */
.realis-footer {
    background: #000000;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 90px 24px 50px;
    color: #ffffff;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 420px;
}

    .footer-brand img {
        height: 144px;
        margin-bottom: 16px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.7;
    }

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 32px;
    align-content: start;
}

    .footer-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 600;
        opacity: 0.85;
    }

        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy,
.footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================
   RADIUS REFINEMENT
========================= */

.navbar-inner,
.visa-extra-card,
.benefit-card,
.process-card,
.detail-item,
.faq-item,
.realis-footer,
.footer-top,
.footer-bottom,
.visa-info-media img,
.visa-extra-card img,
.golden-visa-media,
.golden-visa-media img {
    border-radius: var(--radius-lg);
}

.cta-btn,
.ghost-btn,
.pill,
.theme-toggle-fab,
.floating-participate a {
    border-radius: var(--radius-pill);
}

.process-card li,
.visa-points li {
    border-radius: var(--radius-md);
}

/* =========================
   FLOATING PARTICIPATE
========================= */

.floating-participate {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    animation: float-in 0.6s ease;
}

    .floating-participate a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 999px;
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 14px 30px rgba(91, 91, 255, 0.28);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

        .floating-participate a:hover {
            transform: translateY(-3px);
            background: var(--accent-deep);
            box-shadow: 0 20px 36px rgba(91, 91, 255, 0.34);
        }

@keyframes float-in {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .visa-info-grid,
    .process-grid,
    .visa-extra-card,
    .visa-extra-card.reverse {
        grid-template-columns: 1fr;
    }

    .visa-info-text,
    .visa-info-media {
        transform: none;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .navbar-inner {
        padding: 0 18px;
    }

    .page-shell {
        padding: 110px 20px 40px;
    }
}
