/* ==========================================================================
   Apply Visa — Global Design System
   Palette: Navy #0B2545 / Gold #D4A017 / Sky accent #3A6EA5
   ========================================================================== */

:root {
  --navy-900: #071A33;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1B3E6F;
  --sky-500: #3A6EA5;
  --sky-300: #8FB3E0;
  --gold-500: #D4A017;
  --gold-400: #E9BC3F;
  --gold-300: #F4D06F;
  --ink: #16202E;
  --muted: #5A6B7E;
  --paper: #F7F9FC;
  --line: #E4EAF1;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: 'Fraunces', 'Plus Jakarta Sans', Georgia, serif;
  letter-spacing: -0.01em;
}

/* Selection */
::selection {
  background: var(--gold-300);
  color: var(--navy-900);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: var(--sky-300);
  border-radius: 8px;
  border: 2px solid var(--paper);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sky-500);
}
.countries-section{
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.countries-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/img/World_Map.png') center center no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.country-grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 35px;
}

.country-card{
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible;
    text-decoration: none;
    position: relative;
}

.country-card img{
    width: 100%;
    max-width: 240px;
    background: transparent;
    object-fit: contain;
    transition: .4s ease;
    filter: drop-shadow(0 12px 25px rgba(0,0,0,.18));
}

.country-card:hover img{
    transform: translateY(-10px) scale(1.08);
    filter: drop-shadow(0 20px 35px rgba(0,0,0,.28));
}

.country-shade{
    display:none;
}

.country-name{
    position:absolute;
    bottom:-28px;
    left:50%;
    transform:translateX(-50%);
    color:#0B2545;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

@media(max-width:992px){
    .country-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .country-grid{
        grid-template-columns:1fr;
    }

    .country-card img{
        max-width:180px;
    }
}
* ---------- Utility helpers ---------- */
.cntry-colr,
.gold-text {
  color: #fcbf22 !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

/* ---------- Glassmorphism ---------- */
.glass {
  background:#00000054;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s, background .25s, color .25s;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: linear-gradient(100deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 10px 26px -8px rgba(212, 160, 23, .6);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -10px rgba(212, 160, 23, .75);
}

.consultation-whatsapp-icon {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  color: #128c7e;
}

.hero-consultation-btn .consultation-whatsapp-icon {
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border:3px solid #e7b93a;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
  border-color: 3px solid #e7b93a;
}

.btn-navy {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(11, 37, 69, .6);
}

.btn-navy:hover {
  transform: translateY(-3px);
  background: var(--navy-700);
}

/* ---------- Cards ---------- */
/* .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -24px rgba(11, 37, 69, .35);
  border-color: rgba(212, 160, 23, .5);
} */

.icon-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #2f2762;
  color: white;
  box-shadow: 0 10px 22px -10px rgba(11, 37, 69, .5);
}

.card:hover .icon-badge {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}

.contact-action-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  min-height: 288px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.2rem 1.7rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(11, 37, 69, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px -20px rgba(11, 37, 69, .25);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, box-shadow .35s ease, background-color .35s ease;
}

/* Top Accent Line on Hover */
.contact-action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-800), var(--gold-400), var(--navy-800));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
  z-index: 2;
}

/* Subtle background radial glow on hover */
.contact-action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.08), transparent 75%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
  pointer-events: none;
}

.contact-action-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, .65);
  box-shadow: 0 22px 42px -20px rgba(11, 37, 69, .32), 0 0 25px rgba(212, 160, 23, .18);
}

.contact-action-card:hover::before {
  transform: scaleX(1);
}

.contact-action-card:hover::after {
  opacity: 1;
}

.contact-action-card h3 {
  margin-top: 1.7rem;
  color: var(--navy-900);
  font-size: 1.35rem;
  transition: color .3s ease, transform .3s ease;
}

.contact-action-card:hover h3 {
  color: var(--navy-800);
  transform: translateY(-2px);
}

.contact-action-card p,
.contact-action-card > span {
  font-size: 1rem !important;
  line-height: 1.55;
  transition: color .3s ease;
}

.contact-action-card:hover p,
.contact-action-card:hover > span {
  color: var(--navy-700) !important;
}

.contact-action-card .icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 14px 26px -14px rgba(11, 37, 69, .55);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .35s ease, color .35s ease, box-shadow .35s ease;
}

.contact-action-card .icon-badge svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.contact-action-card:hover .icon-badge {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 28px -10px rgba(212, 160, 23, .55);
}

.contact-action-card:hover .icon-badge svg {
  transform: scale(1.12) rotate(4deg);
}

.contact-action-card:focus-visible {
  outline: 3px solid rgba(212, 160, 23, .45);
  outline-offset: 4px;
}

/* ---------- Home service card interactions ---------- */
#services .card {
  --service-accent: var(--gold-500);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 28px -22px rgba(11, 37, 69, .32);
  transition:
    transform .38s cubic-bezier(.2, .8, .2, 1),
    box-shadow .38s ease,
    border-color .3s ease,
    background-color .3s ease;
}

#services .card:nth-child(1) { --service-accent: #148574; }
#services .card:nth-child(2) { --service-accent: #c9910d; }
#services .card:nth-child(3) { --service-accent: #3b6ca8; }
#services .card:nth-child(4) { --service-accent: #9b6d0b; }
#services .card:nth-child(5) { --service-accent: #287a5f; }
#services .card:nth-child(6) { --service-accent: #a84d5d; }
#services .card:nth-child(7) { --service-accent: #426d9b; }

#services .card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--service-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}

#services .card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(145deg, rgba(224, 242, 254, .55), transparent 58%);
  opacity: 0;
  transition: opacity .35s ease;
}

#services .card .icon-badge,
#services .card .icon-badge svg,
#services .card h3,
#services .card p {
  transition:
    color .3s ease,
    background .35s ease,
    transform .38s cubic-bezier(.2, .8, .2, 1);
}

@media (hover: hover) {
  #services .card:hover {
    border-color: rgba(11, 37, 69, .18);
    background: #fff;
    box-shadow: 0 26px 46px -24px rgba(11, 37, 69, .46);
    transform: translateY(-10px);
  }

  #services .card:hover::before {
    transform: scaleX(1);
  }

  #services .card:hover::after {
    opacity: 1;
  }

  #services .card:hover .icon-badge {
    background: var(--service-accent);
    color: #fff;
    box-shadow: 0 16px 28px -14px var(--service-accent);
    transform: translateY(-3px) rotate(-7deg) scale(1.06);
  }

  #services .card:hover .icon-badge svg {
    transform: rotate(7deg) scale(1.08);
  }

  #services .card:hover h3 {
    color: var(--service-accent);
    transform: translateX(3px);
  }

  #services .card:hover p {
    color: var(--navy-700) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #services .card,
  #services .card::before,
  #services .card::after,
  #services .card .icon-badge,
  #services .card .icon-badge svg,
  #services .card h3,
  #services .card p {
    transition: none !important;
  }

  #services .card:hover,
  #services .card:hover .icon-badge,
  #services .card:hover .icon-badge svg,
  #services .card:hover h3 {
    transform: none !important;
  }
}

/* ---------- Section rhythm ---------- */
.section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

/* ---------- Navbar dropdown ---------- */
.dropdown-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  pointer-events: none;
}

.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel,
.dropdown-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-link {
  position: relative;
  color: #1f2937;
  font-weight: 600;
  transition: .3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--gold-500);
  transition: width .28s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  color: #0B63CE;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

.reveal.d4 {
  transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Why Choose Us Hover ---------- */

.wcu-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: default;

  transition:
    opacity 0.7s ease,
    transform 0.42s cubic-bezier(.2, .8, .2, 1),
    background-color 0.42s ease,
    border-color 0.42s ease,
    box-shadow 0.42s ease;
}

/* Gold shine effect */
.wcu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.35),
    rgba(251, 208, 77, 0.15),
    transparent 55%
  );

  opacity: 0;
  transform: translateX(-35%);

  transition:
    opacity 0.42s ease,
    transform 0.55s cubic-bezier(.2, .8, .2, 1);

  pointer-events: none;
}

/* Number */
.wcu-card .wcu-num {
  display: inline-block;
  color: var(--gold-400);
  font-family: 'Fraunces', 'Plus Jakarta Sans', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;

  transform-origin: center;

  transition:
    color 0.35s ease,
    transform 0.42s cubic-bezier(.2, .8, .2, 1);
}

/* Heading */
.wcu-card h3 {
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

/* Paragraph */
.wcu-card p {
  transition:
    color 0.35s ease,
    opacity 0.35s ease;
}


/* ---------- HOVER ---------- */

.wcu-card:hover {
  background: #fbd04d;

  border-color: #fbd04d;

  box-shadow:
    0 22px 42px -22px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(251, 208, 77, 0.25),
    0 0 30px rgba(251, 208, 77, 0.22);

  transform: translateY(-8px);
}


/* Shine */
.wcu-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}


/* Number */
.wcu-card:hover .wcu-num {
  color: #2c2462;
  transform: scale(1.15) rotate(-4deg);
}


/* Heading */
.wcu-card:hover h3 {
  color: #2c2462;
  transform: translateX(3px);
}


/* Paragraph */
.wcu-card:hover p {
  color: #2c2462;
  opacity: 0.85;
}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {

  .wcu-card,
  .wcu-card::before,
  .wcu-card .wcu-num,
  .wcu-card h3,
  .wcu-card p {
    transition: none !important;
  }

  .wcu-card:hover {
    transform: none !important;
  }

  .wcu-card:hover .wcu-num {
    transform: none !important;
  }

  .wcu-card:hover h3 {
    transform: none !important;
  }
}
/* ---------- Apply advantage ---------- */
.apply-advantage-section {
  position: relative;
  overflow: hidden;
}

.advantage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 37, 69, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 37, 69, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: advantage;
}

.adv-card {
  position: relative;
  min-height: 224px;
  padding: 1.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px -28px rgba(11, 37, 69, .5);
  counter-increment: advantage;
  transition:
    opacity .7s ease,
    transform .38s cubic-bezier(.2, .8, .2, 1),
    border-color .38s ease,
    box-shadow .38s ease;
}

.adv-card::before {
  content: "0" counter(advantage);
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  color: rgba(11, 37, 69, .13);
  font-family: 'Fraunces', 'Plus Jakarta Sans', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transition: color .35s ease;
}

.adv-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}

.adv-check {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  background: var(--navy-800);
  box-shadow: 0 10px 22px -10px rgba(11, 37, 69, .65);
  transition: background-color .35s ease, color .35s ease, transform .35s ease;
}

.adv-check::before {
  content: "";
  width: 13px;
  height: 7px;
  margin-top: -3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.adv-card h3 {
  max-width: calc(100% - 1rem);
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.adv-card p {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7;
}

.adv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 160, 23, .52);
  box-shadow: 0 25px 42px -24px rgba(11, 37, 69, .35);
}

.adv-card:hover::before {
  color: rgba(212, 160, 23, .3);
}

.adv-card:hover::after {
  transform: scaleX(1);
}

.adv-card:hover .adv-check {
  background: var(--gold-400);
  transform: rotate(-5deg) scale(1.06);
}

.adv-card:hover .adv-check::before {
  border-color: var(--navy-900);
}

@media (max-width: 1023px) {
  .advantage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .advantage-grid {
    background-size: 32px 32px;
  }

  .advantage-list {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .adv-card {
    min-height: 0;
    padding: 1.35rem;
  }

  .adv-card::before {
    top: 1.35rem;
    right: 1.35rem;
  }

  .adv-check {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .adv-card,
  .adv-card::before,
  .adv-card::after,
  .adv-check {
    transition: none !important;
  }

  .adv-card:hover,
  .adv-card:hover .adv-check {
    transform: none !important;
  }
}


/* grid pattern overlay */
.grid-overlay {
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: #2c2462;
}

.testimonial-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-heading h2 {
  margin-top: 1rem;
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
}

.testimonial-heading p {
  max-width: 640px;
  margin-top: .8rem;
  color: rgba(186, 230, 253, .75);
  font-size: .92rem;
  line-height: 1.7;
}

.testimonial-group + .testimonial-group {
  margin-top: 4.5rem;
}

.testimonial-group-heading {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.35rem;
}

.testimonial-group-heading h3 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.testimonial-group-heading p {
  margin-top: .3rem;
  color: rgba(186, 230, 253, .68);
  font-size: .82rem;
}

.testimonial-group-kicker {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(233, 188, 63, .45);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: .68rem;
  font-weight: 800;
}

.testimonial-photo-card {
  min-height: 0;
  padding: 0;
}

.testimonial-photo-media {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
}

.testimonial-photo-placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: rgba(255, 255, 255, .9);
  background: radial-gradient(circle at 30% 20%, rgba(233, 188, 63, .32), transparent 45%), linear-gradient(135deg, #13315C, #071A33);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.testimonial-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform .35s ease, opacity .35s ease;
}

.testimonial-photo-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--gold-400);
  font-size: .75rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .3);
}

.testimonial-photo-copy {
  padding: 1.35rem 1.5rem 1.5rem;
}

.testimonial-photo-copy blockquote {
  min-height: 108px;
}

.testimonial-photo-card:hover .testimonial-photo-media img {
  opacity: 1;
  transform: scale(1.05);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  position: relative;
  min-height: 286px;
  padding: 1.75rem;
  overflow: hidden;
  border-radius: 8px;
  transition:
    opacity .7s ease,
    transform .4s cubic-bezier(.2, .8, .2, 1),
    background-color .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: .5rem;
  right: 1.35rem;
  color: rgba(233, 188, 63, .14);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  transition: color .4s ease, transform .4s ease;
  pointer-events: none;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  color: var(--gold-400);
  font-size: 1rem;
  letter-spacing: 0;
}

.testimonial-card blockquote,
.testimonial-card figcaption {
  position: relative;
  z-index: 1;
}

.testimonial-card blockquote {
  margin-top: 1rem;
  min-height: 120px;
  color: rgba(224, 242, 254, .9);
  line-height: 1.7;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
}

.testimonial-card figcaption strong,
.testimonial-card figcaption small {
  display: block;
}

.testimonial-card figcaption small {
  margin-top: .2rem;
  color: rgba(186, 230, 253, .62);
  font-size: .7rem;
  font-weight: 600;
}

.mini-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--gold-400);
  font-size: .75rem;
  font-weight: 800;
  box-shadow: 0 8px 18px -10px rgba(233, 188, 63, .8);
  transition: transform .35s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(233, 188, 63, .65);
  box-shadow: 0 24px 42px -24px rgba(0, 0, 0, .8);
  transform: translateY(-8px);
}

.testimonial-card:hover::before {
  color: rgba(233, 188, 63, .26);
  transform: rotate(-7deg) scale(1.06);
}

.testimonial-card:hover .mini-avatar {
  transform: scale(1.08);
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
}

.testimonial-video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: white;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.testimonial-video-card:hover,
.testimonial-video-card:focus-visible {
  border-color: var(--gold-400);
  box-shadow: 0 22px 42px -24px rgba(0, 0, 0, .85);
  outline: none;
  transform: translateY(-5px);
}

.testimonial-video-media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 19.3;
  overflow: hidden;
  background: var(--navy-800);
}

.testimonial-video-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  scrollbar-width: none;
}

.testimonial-video-media iframe::-webkit-scrollbar {
  display: none;
}

.testimonial-video-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  color: var(--gold-300);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  transition: color .2s ease, background-color .2s ease;
}

.testimonial-video-link:hover,
.testimonial-video-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}


/* ---------- Passport visa services ---------- */
.passport-services {
  position: relative;
  overflow: hidden;
  background:
    whitesmoke;
  background-size: 42px 42px;
}

.passport-services-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #d9a821;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.passport-services-kicker::before,
.passport-services-kicker::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #d9a821;
}

.passport-services-intro {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.75;
}

.passport-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2.5rem;
  perspective: 2000px;
}

.passport-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  height: 450px;
  margin-inline: auto;
  cursor: pointer;
  outline: none;
  transform-style: preserve-3d;
  transition: transform .35s ease, filter .35s ease;
  will-change: transform;
}

.passport-card:hover,
.passport-card:focus-visible,
.passport-card.is-open {
  z-index: 5;
}

.passport-card:focus-visible::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid #e9bc3f;
  border-radius: 8px;
}

.passport-inside,
.passport-cover {
  position: absolute;
  inset: 0;
  border-radius: 8px;
}

.passport-inside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem;
  overflow: hidden;
  border: 1px solid #263248;
  background: #2b2360;
  box-shadow: 0 24px 55px -30px rgba(0, 0, 0, .9);
}

.passport-inside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(233, 188, 63, .08), transparent 38%);
  pointer-events: none;
}

.passport-inside > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease .16s, transform .45s ease .16s;
}

.passport-card:hover .passport-inside > *,
.passport-card:focus-within .passport-inside > *,
.passport-card.is-open .passport-inside > * {
  opacity: 1;
  transform: translateY(0);
}

.passport-service-icon {
  width: 96px;
  height: 96px;
  align-self: center;
  margin-top: 2.25rem;
  fill: none;
  stroke: #e9bc3f;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 16px rgba(233, 188, 63, .35));
}

.passport-inside h3 {
  color: #fff;
  font-family: 'Fraunces', 'Plus Jakarta Sans', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.passport-inside p {
  margin-top: .65rem;
  color: #94a3b8;
  font-size: .88rem;
  line-height: 1.7;
  text-align: center;
}

.passport-inside a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.1rem;
  width: 100%;
  color: #e9bc3f;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.passport-inside a span {
  font-size: 1.1rem;
  transition: transform .25s ease;
}

.passport-inside a:hover span,
.passport-inside a:focus-visible span {
  transform: translateX(5px);
}

.passport-cover {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #2b2360;
  box-shadow: 0 24px 55px -24px rgba(0, 0, 0, .9);
  backface-visibility: hidden;
  transform: rotateY(0);
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform .78s cubic-bezier(.22, 1, .36, 1), border-color .5s ease, box-shadow .5s ease;
  will-change: transform;
}

.passport-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(233, 188, 63, .34) 50%, transparent 72%);
  pointer-events: none;
}

.passport-card:hover .passport-cover,
.passport-card:focus-within .passport-cover,
.passport-card.is-open .passport-cover {
  border-color: rgba(233, 188, 63, .65);
  box-shadow: 0 0 28px rgba(233, 188, 63, .25), inset 0 0 18px rgba(233, 188, 63, .1);
  pointer-events: none;
  transform: rotateY(-152deg);
}

.passport-card:hover .passport-cover::after,
.passport-card:focus-within .passport-cover::after,
.passport-card.is-open .passport-cover::after {
  animation: passport-sweep .78s ease forwards;
}

.passport-spine {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: 12px;
  background: #2b2360;
}

.passport-texture {
  position: absolute;
  inset: 0;
  opacity: .12;
  background:
    repeating-linear-gradient(35deg, transparent 0 4px, rgba(255, 255, 255, .035) 4px 5px),
    repeating-linear-gradient(125deg, transparent 0 7px, rgba(0, 0, 0, .16) 7px 8px);
  pointer-events: none;
}

.passport-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  border: 16px double rgba(252, 246, 186, .055);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.passport-watermark::before,
.passport-watermark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(252, 246, 186, .08);
  border-radius: 50%;
}

.passport-watermark::before { inset: 25px; }
.passport-watermark::after { inset: 55px; }

.passport-cover-title {
  position: relative;
  z-index: 2;
  margin-top: 7rem;
  text-align: center;
}

.passport-cover-title strong,
.passport-cover-title small {
  display: block;
  text-transform: uppercase;
}

.passport-cover-title strong {
  color: #e9bc3f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.12rem;
  letter-spacing: .18em;
}

.passport-cover-title small {
  margin-top: .5rem;
  color: rgba(233, 188, 63, .58);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .28em;
}

.passport-emblem {
  position: relative;
  z-index: 2;
  order: -1;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(233, 188, 63, .42);
  stroke-width: .8;
  stroke-linecap: round;
  stroke-linejoin: round;
  top: 100px;
  filter: brightness(1.5);
}

.passport-glow {
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 8px;
  opacity: 0;
  background: conic-gradient(from 0deg, rgba(233, 188, 63, .4), transparent 25%, transparent 75%, rgba(233, 188, 63, .4));
  filter: blur(20px);
  transition: opacity .5s ease;
  animation: passport-spin 7s linear infinite;
  pointer-events: none;
}

.passport-card:hover .passport-glow,
.passport-card:focus-within .passport-glow,
.passport-card.is-open .passport-glow {
  opacity: .5;
}

.passport-particle {
  position: absolute;
  bottom: 7%;
  z-index: 6;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  background: #fcf6ba;
  box-shadow: 0 0 8px rgba(233, 188, 63, .9);
  animation: passport-drift linear infinite;
  pointer-events: none;
}

.passport-card:hover .passport-particle,
.passport-card:focus-within .passport-particle,
.passport-card.is-open .passport-particle {
  opacity: 1;
}

@keyframes passport-sweep {
  0% { opacity: 0; }
  45% { opacity: .7; }
  100% { opacity: 0; }
}

@keyframes passport-spin {
  to { transform: rotate(360deg); }
}

@keyframes passport-drift {
  0% { opacity: 0; transform: translate(0, 0); }
  18% { opacity: .9; }
  100% { opacity: 0; transform: translate(var(--particle-x, 10px), -100px); }
}

@media (max-width: 1023px) {
  .passport-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .passport-service-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .passport-card {
    max-width: 310px;
    height: 420px;
  }

  .passport-card:hover .passport-cover,
  .passport-card:focus-within .passport-cover,
  .passport-card.is-open .passport-cover {
    transform: rotateY(-112deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .passport-card,
  .passport-cover,
  .passport-glow,
  .passport-particle {
    animation: none !important;
    transition: none !important;
  }

  .passport-card:hover .passport-cover,
  .passport-card:focus-within .passport-cover,
  .passport-card.is-open .passport-cover {
    opacity: 0;
    transform: none;
  }
}

/* ---------- Visa country page interactions ---------- */
.visa-page .card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    opacity .7s ease,
    transform .38s cubic-bezier(.2, .8, .2, 1),
    border-color .38s ease,
    box-shadow .38s ease;
}

.visa-page .card:not(.acc-item)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}

.visa-page .card:hover {
  border-color: rgba(212, 160, 23, .55);
  box-shadow: 0 26px 44px -26px rgba(11, 37, 69, .42);
  transform: translateY(-7px);
}

.visa-page .card:not(.acc-item):hover::after {
  transform: scaleX(1);
}

.visa-page .card h3,
.visa-page .card p.font-semibold {
  transition: color .3s ease;
}

.visa-page .card:hover h3,
.visa-page .card:hover p.font-semibold {
  color: var(--gold-500);
}

.visa-page .card > .text-3xl {
  display: inline-block;
  transform-origin: center;
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}

.visa-page .card:hover > .text-3xl {
  transform: translateY(-3px) scale(1.12) rotate(-5deg);
}

.visa-page .card .icon-badge {
  transition:
    color .35s ease,
    background-color .35s ease,
    transform .35s cubic-bezier(.2, .8, .2, 1);
}

.visa-page .card:hover .icon-badge {
  transform: rotate(-6deg) scale(1.08);
}

.visa-page main > section:first-child .glass {
  transition:
    background-color .4s ease,
    border-color .4s ease,
    box-shadow .4s ease,
    transform .45s cubic-bezier(.2, .8, .2, 1);
}

.visa-page main > section:first-child .glass:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(233, 188, 63, .62);
  box-shadow: 0 30px 54px -28px rgba(0, 0, 0, .75);
  transform: translateY(-7px);
}

.visa-page main > section:first-child [class*="grid-cols-3"] > div {
  padding: .65rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    background-color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.visa-page main > section:first-child [class*="grid-cols-3"] > div:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(233, 188, 63, .28);
  transform: translateY(-4px);
}

.visa-page #process [class*="bg-navy-800"][class*="p-6"] {
  border: 1px solid rgba(255, 255, 255, .12);
  transition:
    border-color .38s ease,
    box-shadow .38s ease,
    transform .38s cubic-bezier(.2, .8, .2, 1);
}

.visa-page #process [class*="bg-navy-800"][class*="p-6"]:hover {
  border-color: rgba(233, 188, 63, .58);
  box-shadow: 0 24px 42px -26px rgba(11, 37, 69, .7);
  transform: translateY(-6px);
}

.visa-page .step-item {
  border-radius: 8px;
  transition:
    opacity .7s ease,
    transform .35s cubic-bezier(.2, .8, .2, 1),
    background-color .35s ease;
}

.visa-page .step-item:hover {
  background: linear-gradient(90deg, rgba(244, 208, 111, .13), transparent 74%);
  transform: translateX(7px);
}

.visa-page .step-line > span {
  transition:
    color .35s ease,
    background-color .35s ease,
    box-shadow .35s ease,
    transform .35s cubic-bezier(.2, .8, .2, 1);
}

.visa-page .step-item:hover .step-line > span {
  color: var(--navy-900);
  background: var(--gold-400);
  box-shadow: 0 14px 26px -14px rgba(212, 160, 23, .75);
  transform: rotate(-5deg) scale(1.06);
}

.visa-page .step-item h4,
.visa-page .doc-list li {
  transition: color .3s ease, transform .3s ease;
}

.visa-page .step-item:hover h4 {
  color: var(--gold-500);
}

.visa-page .doc-list li:hover {
  color: var(--navy-800);
  transform: translateX(5px);
}

.visa-page [style*="linear-gradient(160deg"] {
  border: 1px solid rgba(255, 255, 255, .12);
  transition:
    border-color .38s ease,
    box-shadow .38s ease,
    transform .38s cubic-bezier(.2, .8, .2, 1);
}

.visa-page [style*="linear-gradient(160deg"]:hover {
  border-color: rgba(233, 188, 63, .58);
  box-shadow: 0 26px 48px -28px rgba(11, 37, 69, .8);
  transform: translateY(-7px);
}

.visa-page [style*="linear-gradient(160deg"] li {
  transition: transform .25s ease;
}

.visa-page [style*="linear-gradient(160deg"] li:hover {
  transform: translateX(5px);
}

.visa-page .acc-item:hover {
  border-color: rgba(212, 160, 23, .52);
  box-shadow: 0 18px 34px -28px rgba(11, 37, 69, .55);
  transform: translateY(-3px);
}

.visa-page .acc-item:hover .acc-icon,
.visa-page .acc-item.open .acc-icon {
  color: var(--navy-900);
  background: var(--gold-400);
}

.visa-page .acc-item.open .acc-icon {
  transform: rotate(45deg);
}

.visa-page main > section:last-child .btn:hover {
  transform: translateY(-4px) scale(1.02);
}

.visa-page .footer-list a,
.visa-page .social-ic {
  display: inline-block;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.visa-page .footer-list a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.visa-page .social-ic:hover {
  transform: translateY(-3px);
}

@media (max-width: 639px) {
  .visa-page .step-item:hover {
    transform: translateX(3px);
  }

  .visa-page .card:hover,
  .visa-page main > section:first-child .glass:hover,
  .visa-page [style*="linear-gradient(160deg"]:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visa-page .card,
  .visa-page .card::after,
  .visa-page .card h3,
  .visa-page .card p,
  .visa-page .card > .text-3xl,
  .visa-page .card .icon-badge,
  .visa-page main > section:first-child .glass,
  .visa-page main > section:first-child [class*="grid-cols-3"] > div,
  .visa-page #process [class*="bg-navy-800"][class*="p-6"],
  .visa-page .step-item,
  .visa-page .step-line > span,
  .visa-page .doc-list li,
  .visa-page [style*="linear-gradient(160deg"],
  .visa-page [style*="linear-gradient(160deg"] li,
  .visa-page .acc-item,
  .visa-page .acc-icon,
  .visa-page .btn,
  .visa-page .footer-list a,
  .visa-page .social-ic {
    transition: none !important;
  }

  .visa-page .card:hover,
  .visa-page .card:hover > .text-3xl,
  .visa-page .card:hover .icon-badge,
  .visa-page main > section:first-child .glass:hover,
  .visa-page main > section:first-child [class*="grid-cols-3"] > div:hover,
  .visa-page #process [class*="bg-navy-800"][class*="p-6"]:hover,
  .visa-page .step-item:hover,
  .visa-page .step-item:hover .step-line > span,
  .visa-page .doc-list li:hover,
  .visa-page [style*="linear-gradient(160deg"]:hover,
  .visa-page [style*="linear-gradient(160deg"] li:hover,
  .visa-page .acc-item:hover,
  .visa-page main > section:last-child .btn:hover,
  .visa-page .footer-list a:hover,
  .visa-page .social-ic:hover {
    transform: none !important;
  }
}

/* ---------- Marquee (countries strip) ---------- */
.marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-wrap:hover .marquee {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: grid;
  gap: .85rem;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1),
    border-color .3s ease,
    box-shadow .3s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(212, 160, 23, .48);
  box-shadow: 0 18px 34px -28px rgba(11, 37, 69, .55);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 1.4rem;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}

.faq-q:hover {
  color: var(--gold-500);
  background: rgba(247, 249, 252, .72);
}

.acc-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  color: var(--gold-300);
  background: var(--navy-800);
  border: 1px solid rgba(212, 160, 23, .48);
  box-shadow: 0 9px 18px -12px rgba(11, 37, 69, .7);
  transition:
    color .3s ease,
    background-color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.acc-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-q:hover .acc-icon {
  border-color: var(--gold-400);
  box-shadow: 0 11px 22px -12px rgba(212, 160, 23, .72);
  transform: scale(1.06);
}

.visa-page .acc-icon {
  font-size: 0;
}

.visa-page .acc-icon::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .42s cubic-bezier(.2, .8, .2, 1), opacity .28s ease, visibility .28s ease;
}

.faq-item.open .acc-body,
.acc-item.open .acc-body {
  opacity: 1;
  visibility: visible;
}

.faq-item.open .acc-icon {
  color: var(--navy-900);
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: rotate(90deg);
}

.visa-page .acc-item.open .acc-icon {
  color: var(--navy-900);
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 4.75rem 1.35rem 1.4rem;
  color: var(--muted);
  font-size: .925rem;
  line-height: 1.75;
}

/* ---------- Contact CTA ---------- */
.contact-cta-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background: var(--navy-800);
}

.contact-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-cta-section h2 {
  max-width: 720px;
}

.contact-cta-section p {
  max-width: 690px;
  color: rgba(143, 179, 224, .9);
  line-height: 1.75;
}

.contact-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-phone {
  color: var(--sky-300);
  font-size: .9rem;
  font-weight: 700;
  transition: color .25s ease;
}

.cta-phone:hover {
  color: var(--gold-300);
}

/* ---------- Bottom CTA band ---------- */
.site-bottom-cta {
  position: relative;
  isolation: isolate;
  padding-top: 76px !important;
  padding-bottom: 76px !important;
  color: var(--navy-900) !important;
  border-top: 1px solid rgba(11, 37, 69, .1);
  border-bottom: 4px solid var(--gold-400);
  background: #f3f7fa !important;
}

.site-bottom-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: max(1.25rem, calc((100% - 80rem) / 2));
  width: 96px;
  height: 5px;
  background: var(--gold-400);
}

.site-bottom-cta .aurora,
.site-bottom-cta .grid-overlay {
  display: none;
}

.site-bottom-cta h2,
.site-bottom-cta .text-white {
  color: var(--navy-900) !important;
}

.site-bottom-cta p,
.site-bottom-cta [class*="text-sky-"] {
  color: #52677d !important;
}

.site-bottom-cta .btn-outline {
  color: var(--navy-800);
  border-color: rgba(11, 37, 69, .28);
  background: #fff;
  box-shadow: 0 9px 24px -18px rgba(11, 37, 69, .55);
}

.site-bottom-cta .btn-outline:hover {
  color: #fff;
  border-color: var(--navy-800);
  background: var(--navy-800);
}

.site-bottom-cta .cta-phone {
  color: var(--navy-700);
}

.site-bottom-cta .cta-phone:hover {
  color: #8a6507;
}

@media (max-width: 1023px) {
  .testimonial-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card blockquote {
    min-height: 0;
  }

  .testimonial-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-inline: auto;
  }

  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 639px) {
  .testimonial-group + .testimonial-group {
    margin-top: 3.5rem;
  }

  .testimonial-card {
    padding: 1.35rem;
  }

  .testimonial-photo-card {
    padding: 0;
  }

  .country-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .country-card {
    min-width: 0;
    min-height: 0;
  }

  .country-name {
    left: 185px;
    right: .8rem;
    font-size: .92rem;
    text-align: center;
  }

  .faq-q {
    gap: .8rem;
    padding: 1.05rem;
    font-size: .93rem;
  }

  .acc-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .faq-a {
    padding: 0 1.05rem 1.15rem;
    font-size: .875rem;
  }

  .contact-cta-section {
    padding: 64px 0;
  }

  .contact-cta-actions,
  .contact-cta-actions .btn {
    width: 100%;
  }
}

/* ---------- Home page: responsive hardening ---------- */
.home-page main img,
.home-page main video,
.home-page main iframe {
  max-width: 100%;
}

.home-page main section > [class*="max-w-"],
.home-page main section > [class*="max-w-"] > *,
.home-page .card,
.home-page .adv-card,
.home-page .testimonial-card,
.home-page .country-card,
.home-page footer * {
  min-width: 0;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page a,
.home-page button {
  overflow-wrap: anywhere;
}

@media (max-width: 639px) {
  .home-page main {
    overflow-x: hidden;
  }
  .wcu-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  .passport-service-grid {
    grid-template-columns: 1fr !important;
  }
  .testimonial-video-grid {
    grid-template-columns: 1fr !important;
  }
  .testimonial-video-card iframe {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 479px) {
  .home-page main > section:first-child {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .home-page main > section:first-child h1 {
    font-size: clamp(2.15rem, 11vw, 2.75rem);
  }

  .home-page main > section:first-child .mt-9,
  .home-page main > section:first-child .mt-9 .btn {
    width: 100%;
  }

  .home-page main > section:first-child .grid-cols-3 {
    gap: .5rem;
  }

  .home-page main > section:first-child .grid-cols-3 > div {
    min-width: 0;
  }

  .home-page main > section:first-child .grid-cols-3 .text-3xl {
    font-size: 1.6rem;
  }

  .home-page main > section:first-child .grid-cols-3 .text-xs {
    line-height: 1.45;
  }

  .fab {
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .wa-fab {
    right: 14px;
    bottom: 16px;
  }

  .call-fab {
    right: 14px;
    bottom: 74px;
  }

  .top-fab {
    right: 14px;
    bottom: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonial-card::before,
  .mini-avatar,
  .country-card,
  .country-card img,
  .faq-item,
  .acc-icon,
  .acc-body {
    transition: none !important;
  }

  .testimonial-card:hover,
  .testimonial-card:hover::before,
  .testimonial-card:hover .mini-avatar,
  .country-card:hover img {
    transform: none !important;
  }
}

/* ---------- Floating buttons ---------- */
.fab {
  position: fixed;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .4);
  transition: transform .25s ease, opacity .3s ease;
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
}

.wa-fab {
  right: 22px;
  bottom: 26px;
  background: #25D366;
  color: #fff;
}

.wa-fab svg {
  display: block;
  align-self: center;
  justify-self: center;
}

.call-fab {
  right: 22px;
  bottom: 92px;
  background: var(--navy-700);
  color: var(--gold-400);
  border: 2px solid var(--gold-400);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.call-fab i,
.call-fab > svg {
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: auto;
  line-height: 1;
}

.call-fab i::before {
  display: block;
  line-height: 1;
}

.top-fab {
  right: 22px;
  bottom: 158px;
  background: var(--navy-800);
  color: var(--gold-300);
  opacity: 0;
  pointer-events: none;
}

.top-fab.show {
  opacity: 1;
  pointer-events: auto;
}

/* Pulse ring on whatsapp */
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

/* ---------- Stat counter ---------- */
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

/* ---------- Forms ---------- */
.field {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  color: var(--ink);
}

.field:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, .15);
}

label.lbl {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: .35rem;
  display: block;
}

/* Process timeline connector */
.step-line::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(var(--gold-400), transparent);
}

.step-item:last-child .step-line::before {
  display: none;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
.field:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Navbar states ---------- */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px -14px rgba(11, 37, 69, .15);
  transition: background .3s ease, box-shadow .3s ease;
}

#navbar .nav-link {
  color: #0B2545;
  font-weight: 600;
}

#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: #D4A017;
}

#navbar .burger span {
  background: #0B2545;
}

/* The home page uses one full-color logo, so it remains visible while scrolling. */
.nav-logo-dark {
  display: none;
}

.nav-logo-light {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

#navbar.scrolled .nav-logo-light {
  display: block !important;
}

/* Pages with a light navbar background from the start (inner pages) */
#navbar.solid {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -14px rgba(11, 37, 69, .25);
  border-bottom: 1px solid var(--line);
}

#navbar.solid .nav-link {
  color: var(--navy-800);
}

#navbar.solid .nav-logo-light {
  display: block !important;
}

/* ---------- Dropdown items ---------- */
.dd-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .9rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--navy-800);
  font-size: .95rem;
  transition: background .2s, color .2s, transform .2s;
}

.dd-item:hover {
  background: var(--paper);
  color: var(--gold-500);
  transform: translateX(3px);
}

/* ---------- Burger ---------- */
.burger {
  width: 30px;
  height: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease, background .3s;
}

#navbar.scrolled .burger span,
#navbar.solid .burger span {
  background: var(--navy-800);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: 74px;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 480px);
  background: #fff;
  border-left: 1px solid rgba(11, 37, 69, .08);
  box-shadow: -24px 20px 60px -30px rgba(11, 37, 69, .38);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform .4s cubic-bezier(.2, .8, .2, 1),
    visibility 0s linear .4s;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 49;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu > ul {
  min-height: 100%;
  gap: .35rem;
  padding: 1.75rem 1.5rem 1.5rem;
}

.mobile-menu > ul > li:last-child {
  margin-top: auto;
  padding-top: 1.5rem !important;
}

.mobile-menu > ul > li:last-child .btn {
  min-height: 56px;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 14px 32px -14px rgba(212, 160, 23, .65);
}

.mm-link {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: .9rem .75rem;
  border-radius: 6px;
  color: var(--navy-800);
  font-size: 1.05rem;
  transition: background .2s, color .2s, padding .2s;
}

.mm-link:hover,
.mm-link:focus-visible {
  background: var(--paper);
  color: var(--gold-500);
  padding-left: 1rem;
}

#mobileVisaToggle svg {
  flex: 0 0 auto;
  transition: transform .28s ease;
}

#mobileVisaToggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: .75rem;
  display: flex;
  flex-direction: column;
}

.mobile-sub.open {
  max-height: 520px;
}

.mobile-sub a {
  padding: .7rem .75rem;
  color: var(--muted);
  font-weight: 600;
  border-radius: 6px;
}

.mobile-sub a:hover {
  color: var(--gold-500);
  background: var(--paper);
}

@media (min-width: 1024px) {
  .burger,
  #mobileMenu {
    display: none !important;
  }

  body.menu-open {
    overflow: auto;
  }
}

@media (max-width: 1023px) {
  .burger {
    display: flex;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 48;
    background: rgba(7, 26, 51, .28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility 0s linear .3s;
  }

  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
}

@media (max-width: 520px) {
  .mobile-menu {
    width: 100%;
    border-left: 0;
    box-shadow: none;
  }

  .mobile-menu > ul {
    padding: 1.5rem 1.5rem 1.25rem;
  }

  body.menu-open::after {
    display: none;
  }
}

/* ---------- Mobile menu: branded card layout ---------- */
.mobile-menu {
  top: 0;
  width: min(100%, 480px);
  background: #f4f7fb;
  z-index: 70;
}

.mobile-menu-hero {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 1.15rem 1.4rem 1.45rem;
  color: #fff;
  background: var(--navy-800);
  border-bottom: 5px solid var(--gold-400);
}

.mobile-menu-hero::before,
.mobile-menu-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mobile-menu-hero::before {
  top: 0;
  right: 0;
  width: 38%;
  height: 7px;
  background: var(--gold-400);
}

.mobile-menu-hero::after {
  right: -36px;
  bottom: 28px;
  width: 150px;
  height: 42px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transform: rotate(-38deg);
}

.mobile-menu-hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-brand {
  display: inline-flex;
  width: 116px;
  height: 76px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: .25rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 25px -16px rgba(0, 0, 0, .65);
}

.mobile-menu-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu-close {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.mobile-menu-close svg {
  width: 25px;
  height: 25px;
}

.mobile-menu-title {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
}

.mobile-menu-tagline {
  position: relative;
  z-index: 1;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  font-weight: 500;
}

.mobile-menu > ul {
  min-height: calc(100% - 205px);
  gap: .75rem;
  padding: 1.15rem 1.1rem 1.25rem;
  background: #f4f7fb;
}

.mobile-menu > ul > li:not(:last-child) {
  overflow: hidden;
  border: 1px solid rgba(11, 37, 69, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(11, 37, 69, .06);
}

.mobile-menu > ul > li:last-child {
  padding-top: .4rem !important;
}

.mobile-menu > ul > li:last-child .btn {
  min-height: 54px;
  border-radius: 8px;
  box-shadow: 0 12px 26px -14px rgba(212, 160, 23, .65);
}

.mobile-menu .mm-link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  gap: .85rem;
  min-height: 78px;
  align-items: center;
  padding: .75rem;
  border-radius: 0;
  color: var(--navy-800);
  transition: background .2s, color .2s;
}

.mobile-menu .mm-link:hover,
.mobile-menu .mm-link:focus-visible {
  padding-left: .75rem;
  background: var(--paper);
  color: var(--navy-800);
}

.mobile-menu-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: #1261c9;
  background: #dbeafe;
}

.mobile-menu > ul > li:nth-child(2) .mobile-menu-icon {
  color: #07875f;
  background: #d5f8e9;
}

.mobile-menu > ul > li:nth-child(3) .mobile-menu-icon {
  color: #6d35d6;
  background: #eee6ff;
}

.mobile-menu > ul > li:nth-child(4) .mobile-menu-icon {
  color: #c96d08;
  background: #fff0d9;
}

.mobile-menu > ul > li:nth-child(5) .mobile-menu-icon {
  color: #b72c6e;
  background: #ffe1ef;
}

.mobile-menu-icon svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-copy {
  min-width: 0;
  text-align: left;
}

.mobile-menu-copy strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.mobile-menu-copy small {
  display: block;
  margin-top: .22rem;
  overflow-wrap: anywhere;
  color: #71809a;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.35;
}

.mobile-menu-arrow {
  display: grid;
  place-items: center;
  color: #9aa9be;
  transition: color .2s ease, transform .28s ease;
}

.mobile-menu-arrow svg {
  width: 21px;
  height: 21px;
}

.mobile-menu .mm-link:hover .mobile-menu-arrow,
.mobile-menu .mm-link:focus-visible .mobile-menu-arrow {
  color: var(--gold-500);
  transform: translateX(3px);
}

#mobileVisaToggle[aria-expanded="true"] .mobile-menu-arrow {
  color: var(--gold-500);
  transform: rotate(180deg);
}

#mobileVisaToggle[aria-expanded="true"] svg {
  transform: none;
}

.mobile-menu .mobile-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  padding: 0 .75rem;
  background: #fbfcfe;
}

.mobile-menu .mobile-sub.open {
  max-height: 620px;
  padding-top: .25rem;
  padding-bottom: .75rem;
  border-top: 1px solid rgba(11, 37, 69, .07);
}

.mobile-menu .mobile-sub a {
  padding: .65rem .7rem;
  border-radius: 6px;
  font-size: .78rem;
  line-height: 1.3;
}

body.menu-open .fab {
  pointer-events: none;
}

body.menu-open .fab {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  body::after {
    inset: 0;
    z-index: 69;
  }
}

@media (max-width: 520px) {
  .mobile-menu > ul {
    padding: 1rem .9rem 1.1rem;
  }
}

/* Premium mobile menu refinements */
.mobile-menu {
  background: #f6f7f9;
}

.mobile-menu-hero {
  min-height: 144px;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: #071a33;
  border-bottom: 3px solid var(--gold-400);
}

.mobile-menu-hero::before {
  width: 42%;
  height: 5px;
}

.mobile-menu-hero::after {
  right: -30px;
  bottom: 24px;
  width: 175px;
  height: 52px;
  border-color: rgba(233, 188, 63, .22);
}

.mobile-menu-hero-top {
  width: 100%;
  align-items: center;
}

.mobile-menu-brand {
  width: 148px;
  height: 96px;
  padding: .35rem;
  border: 1px solid rgba(233, 188, 63, .35);
  box-shadow: 0 16px 30px -20px rgba(0, 0, 0, .85);
}

.mobile-menu-close {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-color: rgba(233, 188, 63, .42);
  background: rgba(255, 255, 255, .08);
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  color: var(--gold-300);
  background: rgba(233, 188, 63, .12);
}

.mobile-menu > ul {
  min-height: calc(100% - 144px);
  gap: .78rem;
  padding-top: 1.2rem;
  background: #f6f7f9;
}

.mobile-menu > ul > li:not(:last-child) {
  border: 1px solid rgba(11, 37, 69, .1);
  border-left: 3px solid rgba(212, 160, 23, .75);
  background: #fff;
  box-shadow: 0 8px 24px -18px rgba(7, 26, 51, .5);
}

.mobile-menu .mm-link {
  min-height: 80px;
  padding: .78rem .85rem;
}

.mobile-menu .mobile-menu-nav-link {
  grid-template-columns: 52px minmax(0, 1fr);
}

.mobile-menu .mobile-menu-dropdown {
  grid-template-columns: 52px minmax(0, 1fr) 24px;
}

.mobile-menu .mm-link:hover,
.mobile-menu .mm-link:focus-visible {
  padding-left: .85rem;
  background: #fbfcfe;
}

.mobile-menu > ul > li:nth-child(1) .mobile-menu-icon,
.mobile-menu > ul > li:nth-child(2) .mobile-menu-icon,
.mobile-menu > ul > li:nth-child(3) .mobile-menu-icon,
.mobile-menu > ul > li:nth-child(4) .mobile-menu-icon,
.mobile-menu > ul > li:nth-child(5) .mobile-menu-icon {
  color: var(--gold-400);
  background: var(--navy-800);
  border: 1px solid rgba(233, 188, 63, .25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.mobile-menu-copy strong {
  color: #071a33;
}

.mobile-menu-copy small {
  color: #68778e;
}

.mobile-menu-arrow {
  color: #8492a6;
}

.mobile-menu > ul > li:last-child .btn {
  color: #071a33;
  background: var(--gold-400);
  border: 1px solid var(--gold-500);
  box-shadow: 0 14px 30px -18px rgba(180, 127, 0, .85);
}

.mobile-menu > ul > li:last-child .btn:hover {
  color: #fff;
  background: var(--navy-800);
  border-color: var(--navy-800);
}

/* ---------- Form status ---------- */
.form-status {
  margin-top: .85rem;
  font-size: .9rem;
  font-weight: 600;
  padding: .65rem .9rem;
  border-radius: 10px;
  display: none;
}

.form-status.ok {
  display: block;
  background: #E7F6EC;
  color: #1B7A43;
  border: 1px solid #B7E4C7;
}

.form-status.err {
  display: block;
  background: #FDECEC;
  color: #C0392B;
  border: 1px solid #F5C6CB;
}

.field-error {
  border-color: #C0392B !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12) !important;
}

/* ---------- Shared site footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2f2762;
}

.site-footer-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.site-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .7fr 1.15fr 1.2fr;
  gap: 3rem;
  padding-top: 72px;
  padding-bottom: 58px;
}

.footer-logo-link {
  display: inline-block;
  padding: .45rem .65rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px -22px rgba(0, 0, 0, .85);
}

.footer-logo {
  display: block;
  width: min(100%, 230px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.footer-description {
  max-width: 340px;
  margin-top: 1.25rem;
  color: rgba(143, 179, 224, .82);
  font-size: .9rem;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.35rem;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: var(--sky-300);
  background: rgba(255, 255, 255, .06);
  transition:
    color .28s ease,
    background-color .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials .social-outline {
  fill: none;
}

.footer-socials a:hover {
  color: var(--navy-900);
  background: var(--gold-400);
  border-color: var(--gold-400);
  box-shadow: 0 12px 24px -14px rgba(233, 188, 63, .72);
  transform: translateY(-4px);
}

.site-footer-heading {
  position: relative;
  padding-bottom: .8rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 800;
}

.site-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--gold-400);
}

.site-footer-links {
  display: grid;
  gap: .72rem;
  margin-top: 1.25rem;
}

.footer-country-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.site-footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(143, 179, 224, .86);
  font-size: .86rem;
  line-height: 1.45;
  transition: color .25s ease, transform .25s ease;
}

.site-footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--gold-400);
  transition: width .25s ease, margin-right .25s ease;
}

.site-footer-links a:hover {
  color: var(--gold-300);
  transform: translateX(3px);
}

.site-footer-links a:hover::before {
  width: 12px;
  margin-right: .45rem;
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  font-style: normal;
}

.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(143, 179, 224, .86);
  font-size: .86rem;
  line-height: 1.6;
  transition: color .25s ease, transform .25s ease;
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(233, 188, 63, .26);
  border-radius: 50%;
  color: var(--gold-300);
  background: rgba(233, 188, 63, .08);
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-list a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact-list a:hover .footer-contact-icon {
  color: var(--navy-900);
  background: var(--gold-400);
  transform: scale(1.05);
}

.site-footer-bottom {
  position: relative;
  z-index: 1;
  padding: 1.15rem 0;
  color: rgba(143, 179, 224, .7);
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .1);
  font-size: .82rem;
}

.site-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-developer-credit {
  text-align: right;
}

.footer-developer-credit a {
  color: var(--gold-300);
  font-weight: 700;
  transition: color .25s ease;
}

.footer-developer-credit a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1023px) {
  .site-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 3rem;
  }
}

@media (max-width: 639px) {
  .site-bottom-cta {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 2.3rem;
    padding-top: 58px;
    padding-bottom: 44px;
  }

  .footer-description {
    max-width: none;
  }

  .footer-country-links {
    column-gap: .8rem;
  }

  .site-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-developer-credit {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-socials a,
  .site-footer-links a,
  .site-footer-links a::before,
  .footer-contact-list a,
  .footer-contact-icon,
  .footer-developer-credit a {
    transition: none !important;
  }

  .footer-socials a:hover,
  .site-footer-links a:hover,
  .footer-contact-list a:hover,
  .footer-contact-list a:hover .footer-contact-icon {
    transform: none !important;
  }
}

/* ---------- Visa pages: responsive hardening ---------- */
.visa-page img,
.visa-page video,
.visa-page iframe {
  max-width: 100%;
}

.visa-page iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.visa-page main > section:first-child > .relative.grid,
.visa-page main > section:first-child > .relative.grid > *,
.visa-page #process > .grid > *,
.visa-page .card,
.visa-page .acc-item,
.visa-page footer * {
  min-width: 0;
}

.visa-page h1,
.visa-page h2,
.visa-page h3,
.visa-page h4,
.visa-page p,
.visa-page li,
.visa-page a,
.visa-page button {
  overflow-wrap: anywhere;
}

.visa-type-card {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 2rem 1.85rem;
  cursor: pointer;
  outline: none;
  border: 1px solid rgba(11, 37, 69, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px -24px rgba(11, 37, 69, .35);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.visa-types-section {
  background: #f5f7fa;
}

.visa-types-section .visa-types-intro {
  max-width: 48rem;
}

.visa-types-section .visa-types-grid {
  gap: 1.5rem;
}

.visa-type-card > .text-3xl {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1;
}

.visa-type-card h3 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.3;
}

.visa-type-card > p {
  margin-top: .65rem;
  color: var(--muted) !important;
  font-size: .98rem;
  line-height: 1.55;
}

.visa-type-card:hover,
.visa-type-card:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 12px 30px rgba(11, 37, 69, .12);
  transform: translateY(-3px);
}

.visa-type-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(226, 174, 70, .24), 0 12px 30px rgba(11, 37, 69, .12);
}

.visa-type-card.selected {
  border-color: var(--gold-500);
  box-shadow: inset 0 -3px 0 var(--gold-500), 0 20px 36px -24px rgba(11, 37, 69, .48);
}

.visa-type-card.selected h3 {
  color: #b77d00;
}

.visa-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--navy-800);
  font-size: .95rem;
  font-weight: 700;
}

.visa-card-action > span:last-child {
  color: var(--gold-500);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .2s ease;
}

.visa-type-card:hover .visa-card-action > span:last-child,
.visa-type-card:focus-visible .visa-card-action > span:last-child {
  transform: translateX(4px);
}

.visa-detail-hidden {
  display: none !important;
}

.europe-country-guides {
  background: #fff;
}

.europe-visa-group + .europe-visa-group {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(11, 37, 69, .12);
}

.europe-visa-group-heading {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
}

.europe-guide-flag {
  font-size: 2.15rem;
  line-height: 1;
}

.europe-visa-group-heading span {
  color: #8a6507;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.europe-visa-group-heading h3 {
  margin-top: .15rem;
  color: var(--navy-800);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.europe-visa-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.europe-visa-card {
  display: flex;
  min-height: 265px;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid rgba(11, 37, 69, .12);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(11, 37, 69, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.europe-visa-card:hover,
.europe-visa-card:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 14px 32px rgba(11, 37, 69, .12);
  outline: none;
  transform: translateY(-3px);
}

.europe-visa-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.europe-visa-card h4 {
  margin-top: 1rem;
  color: var(--navy-800);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.europe-visa-card p {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.6;
}

.europe-guide-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--navy-800);
  font-size: .8rem;
  font-weight: 700;
}

.europe-guide-action > span {
  color: var(--gold-500);
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.europe-visa-card:hover .europe-guide-action > span,
.europe-visa-card:focus-visible .europe-guide-action > span {
  transform: translateX(4px);
}

.visa-selection-banner {
  display: none;
  align-self: start;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  margin-bottom: 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(11, 37, 69, .12);
  border-top: 3px solid var(--gold-500);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 10px 28px rgba(11, 37, 69, .08);
  color: var(--navy-800);
}

.visa-selection-banner.is-visible {
  display: flex;
}

.visa-selection-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 800;
}

.visa-selection-banner h2 {
  margin-top: .25rem;
  color: var(--navy-800);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.visa-selection-banner p {
  max-width: 760px;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .9rem;
}

.visa-selection-label {
  color: #8a6507;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .visa-process-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .visa-selection-banner {
    margin-bottom: 0;
  }

  .visa-page main > section:first-child {
    min-height: auto;
  }

  .visa-page main > section:first-child > .relative.grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .visa-page main > section:first-child .glass {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 639px) {
  .visa-page {
    --mobile-gutter: 1rem;
  }

  .visa-page .section {
    padding-block: 56px;
  }

  .visa-page main > section:first-child {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .visa-page main > section:first-child > .relative.grid,
  .visa-page main section > [class*="max-w-"] {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .visa-page main > section:first-child > .relative.grid {
    gap: 2.25rem;
  }

  .visa-page main > section:first-child nav {
    line-height: 1.6;
  }

  .visa-page .eyebrow {
    max-width: 100%;
    font-size: .68rem;
    line-height: 1.55;
    letter-spacing: .12em;
  }

  .visa-page h1 {
    font-size: clamp(2.15rem, 11vw, 2.75rem);
    line-height: 1.08;
  }

  .visa-page h2 {
    line-height: 1.18;
  }

  .visa-page main > section:first-child p.text-lg {
    font-size: 1rem;
    line-height: 1.75;
  }

  .visa-page main > section:first-child [class*="grid-cols-3"] {
    width: 100%;
    max-width: none;
    gap: .5rem;
  }

  .visa-page main > section:first-child [class*="grid-cols-3"] > div {
    min-width: 0;
    padding: .65rem .35rem;
  }

  .visa-page main > section:first-child [class*="grid-cols-3"] .text-3xl {
    font-size: 1.55rem;
  }

  .visa-page main > section:first-child [class*="grid-cols-3"] .text-xs {
    line-height: 1.45;
  }

  .visa-page .card {
    border-radius: 8px;
  }

  .visa-page .card.p-7 {
    padding: 1.25rem;
  }

  .visa-type-card {
    min-height: 245px;
    padding: 1.55rem;
  }

  .europe-visa-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .europe-visa-card {
    min-height: 240px;
  }

  .visa-selection-banner {
    margin-bottom: 2.5rem;
    padding: 1.2rem;
  }

  .visa-page [style*="linear-gradient(160deg"] {
    padding: 1.5rem;
    border-radius: 8px;
  }

  .visa-page .step-item {
    padding-left: 3.35rem;
    padding-bottom: 2rem;
  }

  .visa-page .step-line > span {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    font-size: 1rem;
  }

  .visa-page .step-line::before {
    left: 21px;
    top: 44px;
  }

  .visa-page .acc-item {
    padding-inline: 1rem;
  }

  .visa-page .acc-item [data-faq-q] {
    gap: .75rem;
    padding-block: 1rem;
  }

  .visa-page .fab {
    width: 50px;
    height: 50px;
  }

  .visa-page .wa-fab {
    right: 14px;
    bottom: 16px;
  }

  .visa-page .call-fab {
    right: 14px;
    bottom: 76px;
  }

  .visa-page .top-fab {
    right: 14px;
    bottom: 136px;
  }
}

@media (max-width: 479px) {
  .europe-visa-grid {
    grid-template-columns: 1fr;
  }

  .europe-visa-card {
    min-height: 220px;
  }

  .visa-page main > section:first-child .btn,
  .visa-page main > section:last-child .btn {
    width: 100%;
  }

  .visa-page main > section:first-child .flex-wrap,
  .visa-page main > section:last-child .flex-wrap {
    width: 100%;
  }

  .visa-page .footer-country-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- Compact mobile floating actions ---------- */
@media (max-width: 639px) {
  .fab,
  .visa-page .fab {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .wa-fab,
  .visa-page .wa-fab {
    right: 14px !important;
    bottom: 16px !important;
  }

  .call-fab,
  .visa-page .call-fab {
    right: 14px !important;
    bottom: 74px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }

  .top-fab,
  .visa-page .top-fab {
    right: 14px !important;
    bottom: 132px !important;
  }

  .wa-fab svg,
  .call-fab svg,
  .top-fab svg {
    width: 22px !important;
    height: 22px !important;
    padding: 0 !important;
    margin: auto !important;
    display: block !important;
  }

  .call-fab i {
    font-size: 20px;
  }
}

/* ==========================================================================
   Contact Form & Connect Section (Refined UI matching design)
   ========================================================================== */
#contact-section .contact-form-card,
#contact-form.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -20px rgba(11, 37, 69, 0.07);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease;
}

#contact-section .contact-eyebrow,
#contact-form .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a017;
}

#contact-section .contact-eyebrow::before,
#contact-form .contact-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #d4a017;
  border-radius: 2px;
}

#contact-section h2,
#contact-form h2 {
  color: #071a33;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.15rem;
  line-height: 1.25;
}

#contact-section p.contact-desc,
#contact-form p.contact-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

#contact-section .form-label,
#contact-form .form-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0b2545;
  margin-bottom: 0.45rem;
}

#contact-section .form-input,
#contact-section .form-select,
#contact-section .form-textarea,
#contact-form .form-input,
#contact-form .form-select,
#contact-form .form-textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

#contact-section .form-select,
#contact-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23334155' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.8rem;
}

#contact-section .form-input:focus,
#contact-section .form-select:focus,
#contact-section .form-textarea:focus,
#contact-form .form-input:focus,
#contact-form .form-select:focus,
#contact-form .form-textarea:focus {
  border-color: #e3b337;
  box-shadow: 0 0 0 4px rgba(227, 179, 55, 0.18);
}

#contact-section .btn-submit-inquiry,
#contact-form .btn-submit-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #071a33;
  background: linear-gradient(135deg, #e5b837, #d9a520);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 12px 25px -6px rgba(227, 179, 55, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#contact-section .btn-submit-inquiry:hover,
#contact-form .btn-submit-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(227, 179, 55, 0.7);
  background: linear-gradient(135deg, #ebd04d, #e3b337);
}

#contact-section .map-card,
#contact-form .map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -20px rgba(11, 37, 69, 0.07);
}

#contact-section .connect-card,
#contact-form .connect-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -20px rgba(11, 37, 69, 0.07);
  padding: 2.25rem;
}

#contact-section .connect-card h3,
#contact-form .connect-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #071a33;
}

#contact-section .connect-card p,
#contact-form .connect-card p {
  color: #64748b;
  font-size: 0.92rem;
}

#contact-section .btn-whatsapp-pill,
#contact-form .btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff !important;
  background-color: #25d366;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 12px 24px -6px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

#contact-section .btn-whatsapp-pill:hover,
#contact-form .btn-whatsapp-pill:hover {
  transform: translateY(-2px);
  background-color: #22bf5b;
  box-shadow: 0 16px 28px -6px rgba(37, 211, 102, 0.6);
}

#contact-section .btn-call-pill,
#contact-form .btn-call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff !important;
  background-color: #0b2545;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 12px 24px -6px rgba(11, 37, 69, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

#contact-section .btn-call-pill:hover,
#contact-form .btn-call-pill:hover {
  transform: translateY(-2px);
  background-color: #13315c;
  box-shadow: 0 16px 28px -6px rgba(11, 37, 69, 0.6);
}

/* ==========================================================================
   Animated Success Modal Popup
   ========================================================================== */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: rgba(7, 26, 51, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.success-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(7, 26, 51, 0.35);
  border: 1px solid #e2e8f0;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.success-modal-overlay.open .success-modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  background-color: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

/* Animated Checkmark Circle */
.success-icon-box {
  width: 86px;
  height: 86px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px -6px rgba(16, 185, 129, 0.35);
  position: relative;
}

.checkmark-svg {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: block;
  stroke-width: 3.5;
  stroke: #10b981;
  stroke-miterlimit: 10;
}

.checkmark-circle-bg {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3.5;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: none;
}

.success-modal-overlay.open .checkmark-circle-bg {
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.success-modal-overlay.open .checkmark-check {
  animation: stroke-check 0.45s cubic-bezier(0.65, 0, 0.45, 1) 0.45s forwards;
}

@keyframes stroke-circle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke-check {
  100% {
    stroke-dashoffset: 0;
  }
}

.modal-done-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 2rem;
  margin-top: 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #071a33;
  background: linear-gradient(135deg, #e5b837, #d9a520);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 10px 22px -4px rgba(227, 179, 55, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.modal-done-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(227, 179, 55, 0.65);
  background: linear-gradient(135deg, #ebd04d, #e3b337);
}

/* ==========================================================================
   Visa Types Card UI (Refined Modern Design with Hover Effects & Centered Icon Box)
   ========================================================================== */
.visa-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid #e2e8f0;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.35s ease, background-color 0.3s ease;
  box-shadow: 0 6px 20px -10px rgba(11, 37, 69, 0.05);
  cursor: pointer;
  overflow: hidden;
}

.visa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fcbf22, #e5b837);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.visa-card:hover {
  transform: translateY(-8px);
  border-color: #fcbf22;
  box-shadow: 0 20px 40px -15px rgba(252, 191, 34, 0.35);
}

.visa-card:hover::before {
  opacity: 1;
}

/* Icon Box Centered & Animated */
.visa-icon-box {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 1.65rem;
  color: #475569;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.visa-card:hover .visa-icon-box {
  transform: scale(1.12) rotate(4deg);
  background: #fcbf22;
  border-color: #fcbf22;
  color: #071a33;
  box-shadow: 0 12px 24px -4px rgba(252, 191, 34, 0.45);
}

.visa-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #071a33;
  text-align: center;
  transition: color 0.3s ease;
}

.visa-card p {
  font-size: 0.92rem;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.visa-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #334155;
  transition: color 0.3s ease;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.visa-card:hover .visa-card-footer {
  color: #d99b00;
}

.visa-card-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.visa-card:hover .visa-card-arrow {
  transform: translateX(6px);
}

.visa-card.is-active,
.visa-card.selected {
  border-color: #fcbf22 !important;
  box-shadow: 0 16px 36px -10px rgba(252, 191, 34, 0.4) !important;
}

.visa-card.is-active .visa-icon-box,
.visa-card.selected .visa-icon-box {
  background: #fcbf22 !important;
  border-color: #fcbf22 !important;
  color: #071a33 !important;
  box-shadow: 0 10px 20px -4px rgba(252, 191, 34, 0.45) !important;
}

.visa-card.is-active .visa-card-footer,
.visa-card.selected .visa-card-footer {
  color: #d99b00 !important;
}

.visa-detail-hidden {
  display: none !important;
}

/* ==========================================================================
   Visa Consultancy Attractive FAQ Accordion UI
   ========================================================================== */
#faqGroup .acc-item {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(7, 26, 51, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.3s ease;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

#faqGroup .acc-item:hover {
  border-color: #fcbf22;
  box-shadow: 0 10px 28px -6px rgba(252, 191, 34, 0.22);
  transform: translateY(-2px);
}

#faqGroup .acc-item.open {
  border-color: #fcbf22;
  box-shadow: 0 14px 36px -8px rgba(252, 191, 34, 0.28);
  background: #ffffff;
}

#faqGroup [data-faq-q] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

#faqGroup .faq-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d99b00;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

#faqGroup .acc-item:hover .faq-icon-box,
#faqGroup .acc-item.open .faq-icon-box {
  background: #fffbeb;
  border-color: #fcbf22;
  transform: scale(1.05);
}

#faqGroup .faq-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #071a33;
  line-height: 1.4;
  transition: color 0.3s ease;
}

#faqGroup .acc-item:hover .faq-title,
#faqGroup .acc-item.open .faq-title {
  color: #d99b00;
}

#faqGroup .acc-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  flex: 0 0 38px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  color: #071a33;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#faqGroup .acc-item:hover .acc-icon {
  background: #fef08a;
  border-color: #fcbf22;
  color: #071a33;
}

#faqGroup .acc-item.open .acc-icon {
  transform: rotate(180deg);
  background: #fcbf22;
  border-color: #fcbf22;
  color: #071a33;
  box-shadow: 0 6px 16px -2px rgba(252, 191, 34, 0.45);
}

#faqGroup .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
  border-top: 1px solid transparent;
}

#faqGroup .acc-item.open .acc-body {
  border-top-color: #f1f5f9;
}

#faqGroup .acc-body-content {
  padding: 1.25rem 1.75rem 1.5rem 1.75rem;
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  border-left: 4px solid #fcbf22;
  background: #f8fafc;
}




