@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..700;1,9..40,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
.michroma-text {
  font-family: 'Michroma', sans-serif;
}
:root {
  --nfs-primary-h: 210;
  --nfs-primary-s: 100%;
  --nfs-primary-l: 40%;
  --nfs-primary-dark-l: 30%;
  --nfs-accent-h: 174;
  --nfs-accent-s: 100%;
  --nfs-accent-l: 29%;

  --nfs-primary: hsl(var(--nfs-primary-h) var(--nfs-primary-s) var(--nfs-primary-l));
  --nfs-primary-dark: hsl(var(--nfs-primary-h) var(--nfs-primary-s) var(--nfs-primary-dark-l));
  --nfs-accent: hsl(var(--nfs-accent-h) var(--nfs-accent-s) var(--nfs-accent-l));
  --nfs-bg: #fff;
  --nfs-fg: #0a0a0a;
  --nfs-muted: #666;
  --nfs-border: #e5e7eb;
  --nfs-radius: 0.75rem;
  --nfs-max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body.nfs-body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--nfs-bg);
  color: var(--nfs-fg);
  line-height: 1.5;
  overflow-x: clip;
}

body.nfs-no-scroll {
  overflow: hidden;
}

.nfs-main {
  flex: 1;
}

.nfs-body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.screen-reader-text {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

/* Header */
.nfs-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  transition: box-shadow 0.2s, backdrop-filter 0.2s;
}

.nfs-header--scrolled {
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.08);
}

.nfs-container {
  width: min(100% - 2rem, var(--nfs-max));
  margin-inline: auto;
}

.nfs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.nfs-brand {
  font-weight: 800;
  font-size: 28px;
  color: var(--nfs-primary);
  text-decoration: none;
}

.nfs-nav--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nfs-nav--desktop {
    display: block;
  }
  .nfs-menu-toggle {
    display: none !important;
  }
}

.nfs-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.nfs-nav__list--desktop {
  gap: 0.15rem;
}

.nfs-nav__link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: var(--nfs-radius);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(0 0 0 / 0.76);
}

.nfs-nav__link:hover,
.nfs-nav__link:focus-visible {
  color: var(--nfs-primary);
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 96%);
  outline: none;
}

.nfs-nav__list .current-menu-item > a,
.nfs-nav__link.is-active {
  color: var(--nfs-primary);
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 95%);
}

.nfs-menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nfs-menu-toggle__bar {
  width: 1.35rem;
  height: 2px;
  background: #222;
}

.nfs-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgb(0 0 0 / 0.35);
}

.nfs-drawer[hidden] {
  display: none;
}

.nfs-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 22rem);
  height: 100%;
  background: #fff;
  padding: 1.25rem 1rem;
  box-shadow: -8px 0 30px rgb(0 0 0 / 0.12);
}

.nfs-menu-toggle--close {
  margin-left: auto;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  line-height: 1;
}

.nfs-nav__list--mobile {
  flex-direction: column;
  align-items: stretch;
}

.nfs-nav__list--mobile .nfs-nav__link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

/* Hero */
.nfs-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(210deg 100% 50%), #fff 45%, hsl(219.88deg 100% 97%));
}

.nfs-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L0 0 0 10' fill='none' stroke='%23000' stroke-opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero background image variant (set via ACF "Hero background image") */
.nfs-hero--has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nfs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(10 15 30 / 0.55), rgb(10 15 30 / 0.72));
  pointer-events: none;
}

.nfs-hero--has-bg .nfs-hero__title,
.nfs-hero--has-bg .nfs-hero__lead {
  color: #fff;
}

.nfs-hero--has-bg .nfs-hero-pill {
  background: rgb(255 255 255 / 0.16);
  color: #fff;
  backdrop-filter: blur(6px);
}

.nfs-hero--has-bg .nfs-hero-icon {
  color: #fff;
}

.nfs-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 4rem 3rem;
  text-align: center;
}

.nfs-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  font-weight: 800;
}

.nfs-hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgb(0 0 0 / 0.72);
}

.nfs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.nfs-hero-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nfs-hero-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nfs-hero-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--nfs-radius);
  background: rgb(255 255 255 / 0.55);
  backdrop-filter: blur(6px);
  font-weight: 600;
}

.nfs-hero-icon {
  color: var(--nfs-primary);
  display: inline-flex;
}

.nfs-hero-icon svg {
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--nfs-radius);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--nfs-primary);
  color: #fff;
  border-color: var(--nfs-primary);
}

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

.btn--outline {
  background: transparent;
  color: var(--nfs-primary);
  border-color: var(--nfs-primary);
}

.btn--outline:hover {
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 96%);
}

.btn--block {
  width: 100%;
}

.btn.is-disabled,
a.btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

/* Sections */
.nfs-section {
  padding: 4.5rem 0;
}

.nfs-section--soft {
  background: linear-gradient(180deg, #fff, hsl(var(--nfs-primary-h) var(--nfs-primary-s) 98%) 40%, #fff);
}

.nfs-section--muted {
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 97%);
}

.nfs-section--cta {
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 96%);
  text-align: center;
}

.nfs-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.nfs-section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
}

.nfs-section__sub {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--nfs-muted);
  font-size: 1.05rem;
}

.nfs-section__cta {
  margin-top: 1.25rem;
}

.nfs-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nfs-primary);
}

.nfs-muted-center {
  text-align: center;
  margin-top: 1.35rem;
  font-size: 0.875rem;
  color: var(--nfs-muted);
}

.nfs-muted {
  color: var(--nfs-muted);
}

.nfs-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Grid cards */
.nfs-grid-3 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .nfs-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.nfs-grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .nfs-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.nfs-card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.nfs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgb(0 0 0 / 0.1);
}

.nfs-card__head {
  margin-bottom: 0.5rem;
}

.nfs-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.nfs-card__desc {
  margin: 0;
  color: var(--nfs-muted);
}

.nfs-card__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
}

.nfs-card__features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.925rem;
  margin-bottom: 0.55rem;
}

.nfs-check {
  color: var(--nfs-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.nfs-card__cta {
  margin: 0;
  margin-top: auto;
}

/* Carousel */
.nfs-carousel {
  position: relative;
}

.nfs-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.nfs-carousel__btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--nfs-border);
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--nfs-primary);
}

.nfs-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.nfs-carousel__item {
  scroll-snap-align: start;
  flex: 0 0 min(280px, 78vw);
}

.nfs-place-card__image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 8 / 10;
}

.nfs-place-card__image-wrap--empty {
  background: linear-gradient(160deg, var(--nfs-primary), var(--nfs-primary-dark));
}

.nfs-carousel__empty {
  margin: 0;
  padding: 2rem 1rem;
  color: var(--nfs-muted);
  font-size: 0.95rem;
}

.nfs-place-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nfs-place-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 0.78));
  color: #fff;
  font-size: 0.8rem;
}

.nfs-place-card__flag {
  border-radius: 4px;
  object-fit: cover;
}

.nfs-place-card__meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nfs-place-card__meta-text strong {
  font-size: 0.97rem;
}

/* Page hero */
.nfs-page-hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(135deg, hsl(var(--nfs-primary-h) var(--nfs-primary-s) 97%), #fff 50%, hsl(var(--nfs-accent-h) var(--nfs-accent-s) 97%));
}

.nfs-page-hero__inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.nfs-page-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.nfs-page-hero__lead {
  margin: 0;
  color: var(--nfs-muted);
  font-size: 1.075rem;
}

.nfs-page-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.nfs-prose img {
  max-width: 100%;
  height: auto;
}

/* Country / split */
.nfs-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nfs-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.nfs-h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 800;
}

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

.nfs-req-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.nfs-aside-box {
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 97%);
  border-radius: 1rem;
  padding: 1.75rem;
}

.nfs-benefit,
.nfs-step {
  padding: 0.85rem;
  text-align: center;
}

.nfs-benefit__title,
.nfs-step__tit {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.nfs-benefit__desc,
.nfs-step__desc {
  margin: 0;
  font-size: 0.925rem;
  color: var(--nfs-muted);
}

.nfs-grid-4 .nfs-step:first-child::before {
  content: '';
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: block;
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 92%);
}

.nfs-grid-4 .nfs-step:nth-child(n + 2)::before {
  content: '';
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: block;
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 92%);
}

.nfs-cta-center {
  text-align: center;
}

/* Contact */
.nfs-contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .nfs-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nfs-contact-h2 {
  margin: 0 0 1.35rem;
  font-size: 1.65rem;
  font-weight: 800;
}

.nfs-contact-cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nfs-ccard {
  display: flex;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--nfs-border);
}

.nfs-ccard__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: hsl(var(--nfs-accent-h) var(--nfs-accent-s) 94%);
  color: hsl(var(--nfs-accent-h) var(--nfs-accent-s) 25%);
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  height: fit-content;
}

.nfs-ccard__tit {
  display: block;
  margin-bottom: 0.25rem;
}

.nfs-ccard__link {
  color: var(--nfs-primary);
  text-decoration: none;
}

.nfs-ccard__det {
  color: var(--nfs-muted);
}

.nfs-form-shell {
  padding: 1rem 0;
}

/* Footer */
.nfs-footer {
  background: var(--nfs-primary-dark);
  color: #fff;
  margin-top: auto;
}

.nfs-footer__grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

@media (min-width: 768px) {
  .nfs-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.nfs-footer__brand {
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  display: block;
}

.nfs-footer__muted {
  color: rgb(255 255 255 / 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nfs-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

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

.nfs-footer__links a {
  color: rgb(255 255 255 / 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.15rem 0;
}

.nfs-footer__links a:hover {
  color: #fff;
}

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

.nfs-footer__contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  color: rgb(255 255 255 / 0.82);
}

.nfs-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  margin-top: 0.42rem;
  flex-shrink: 0;
}

.nfs-dot--accent {
  background: var(--nfs-accent);
}

.nfs-footer__contact a {
  color: inherit;
  text-decoration: none;
}

.nfs-footer__social {
  display: flex;
  gap: 0.65rem;
}

.nfs-social-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.nfs-social-btn:hover {
  background: rgb(255 255 255 / 0.2);
}

.nfs-footer__bar {
  border-top: 1px solid rgb(255 255 255 / 0.15);
}

.nfs-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.35rem;
  font-size: 0.85rem;
}

.nfs-footer__legal {
  display: flex;
  gap: 1.25rem;
}

.nfs-footer__legal a {
  color: rgb(255 255 255 / 0.7);
  text-decoration: none;
}

.nfs-footer__copy {
  margin: 0;
}

/* WhatsApp FAB */
.nfs-fab-wa {
  position: fixed;
  z-index: 45;
  right: 1.25rem;
  bottom: 1.25rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.2);
  display: grid;
  place-items: center;
  transition: transform 0.15s;
}

.nfs-fab-wa:hover {
  transform: scale(1.05);
}

/* Testimonials */
.nfs-testimonials {
  --swiper-theme-color: var(--nfs-primary);
  --swiper-navigation-size: 20px;
}

.nfs-testimonial-slider {
  padding: 0.5rem 0 3rem;
}

.nfs-testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

.nfs-testimonial-card {
    text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
}

.nfs-testimonial-card .nfs-quote {
  font-size: 2rem;
  line-height: 1;
  color: var(--nfs-primary);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.nfs-testimonial-card .nfs-stars {
  justify-content: center;
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgb(0 0 0 / 0.15);
}

.nfs-testimonial-card .nfs-stars .filled {
  color: #f5a524;
}

.nfs-testimonial-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.nfs-testimonial-card .review {
  margin: 0;
  color: var(--nfs-muted);
  font-size: 0.95rem;
  flex: 1;
}

.nfs-testimonial-card .customer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--nfs-border);
  justify-content: center;
}

.nfs-testimonial-card .avatar {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 94%);
  color: var(--nfs-primary);
  font-weight: 700;
}

.nfs-testimonial-card .customer-info strong {
  font-size: 0.9rem;
}

.nfs-testimonial-slider .swiper-button-prev,
.nfs-testimonial-slider .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.12);
  top: 42%;
}

.nfs-testimonial-slider .swiper-button-prev::after,
.nfs-testimonial-slider .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.nfs-testimonial-slider .swiper-pagination {
  bottom: 0;
}

.nfs-testimonial-slider .swiper-pagination-bullet-active {
  background: var(--nfs-primary);
}

@media (max-width: 640px) {
  .nfs-testimonial-slider .swiper-button-prev,
  .nfs-testimonial-slider .swiper-button-next {
    display: none;
  }
}

.nfs-center-msg {
  text-align: center;
  padding-block: 4rem;
}

.nfs-post-list {
  list-style: square;
}

/* =====================================================================
   Additional theme overrides — topbar, hero visual, testimonials polish,
   Schengen countries grid. Appended per client-provided CSS (kept as a
   later cascade layer so these values win over the base rules above).
   ===================================================================== */

/* Top Bar */
.nfs-topbar{
    background:#0066CC;
    color:#fff;
    font-size:14px;
}

.nfs-topbar__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:42px;
}

.nfs-topbar__item{
    flex:1;
    display:flex;
    align-items:center;
}

.nfs-topbar__item--left{
    justify-content:flex-start;
}

.nfs-topbar__item--center{
    justify-content:center;
}

.nfs-topbar__item--right{
    justify-content:flex-end;
    gap:18px;
}

.nfs-topbar a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.nfs-topbar__item--right a{
    width:34px;
    height:34px;
    justify-content:center;
    border-radius:50%;
}

.nfs-topbar a:hover{
    opacity:.85;
}

@media (max-width:768px){

    .nfs-topbar__inner{
        flex-direction:column;
        gap:10px;
        padding:10px 0;
    }

    .nfs-topbar__item{
        justify-content:center;
    }
}

.nfs-hero__inner{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;

    padding:100px 0;
}

.nfs-hero__content{
    text-align:left;
}

.nfs-hero__visual{
    display:flex;
    justify-content:center;
}

.travel-animation{
    width:550px;
    height:550px;
    position:relative;
}

/* PASSPORT */

.passport{
    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
    z-index:5;

    opacity:0;

    animation:
        popIn .8s ease forwards,
        passportFloat 5s ease-in-out .8s infinite;
}

.passport img{
    width:600px;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.15));
}

/* FLAGS */

.flag{
    position:absolute;

    width:95px;
    height:95px;

    border-radius:50%;
    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    opacity:0;
}

.flag img{
    width:50px;
}

.us{
    top:30px;
    left:90px;

    animation:
        popIn .8s .4s forwards,
        float1 5s ease-in-out 1.2s infinite;
}

.uk{
    top:120px;
    right:30px;

    animation:
        popIn .8s .7s forwards,
        float2 5s ease-in-out 1.5s infinite;
}

.ca{
    bottom:90px;
    left:20px;

    animation:
        popIn .8s 1s forwards,
        float3 5s ease-in-out 1.8s infinite;
}

.sc{
    bottom:40px;
    right:60px;

    animation:
        popIn .8s 1.3s forwards,
        float4 5s ease-in-out 2.1s infinite;
}

/* ANIMATIONS */

@keyframes popIn{

    0%{
        opacity:0;
        transform:scale(.3);
    }

    70%{
        opacity:1;
        transform:scale(1.12);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }

}

@keyframes passportFloat{

    0%,100%{
        transform:
            translate(-50%,-50%)
            translateY(0);
    }

    50%{
        transform:
            translate(-50%,-50%)
            translateY(-20px);
    }

}

@keyframes float1{
    50%{
        transform:translateY(-15px);
    }
}

@keyframes float2{
    50%{
        transform:translateY(18px);
    }
}

@keyframes float3{
    50%{
        transform:translateY(-18px);
    }
}

@keyframes float4{
    50%{
        transform:translateY(15px);
    }
}

@media(max-width:991px){

    .nfs-hero__inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .nfs-hero__content{
        text-align:center;
        order:2;
    }

    .nfs-hero__visual{
        order:1;
    }

    .travel-animation{
        width:360px;
        height:360px;
    }

    .passport img{
        width:170px;
    }

    .flag{
        width:70px;
        height:70px;
    }

    .flag img{
        width:35px;
    }
}
.nfs-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
/*   background:  linear-gradient(165deg, #007fff, #fff 45%, hsl(var(--nfs-accent-h) var(--nfs-accent-s) 97%)); */
}

.nfs-hero__lead {
    margin: 0;
}
.nfs-place-card__image-wrap{
	aspect-ratio: 8 / 12;
}
.nfs-hero__actions {
    justify-content: left;
    margin-top: 20px;
}

/* Testimonials */
.nfs-testimonials {
  --swiper-theme-color: var(--nfs-primary);
  --swiper-navigation-size: 20px;
}

.nfs-testimonial-slider {
  padding: 0.5rem 0 3rem;
}

.nfs-testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

.nfs-testimonial-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
}

.nfs-testimonial-card .nfs-quote {
  font-size: 2rem;
  line-height: 1;
  color: var(--nfs-primary);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.nfs-testimonial-card .nfs-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgb(0 0 0 / 0.15);
}

.nfs-testimonial-card .nfs-stars .filled {
  color: #f5a524;
}

.nfs-testimonial-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.nfs-testimonial-card .review {
  margin: 0;
  color: var(--nfs-muted);
  font-size: 0.95rem;
  flex: 1;
}

.nfs-testimonial-card .customer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--nfs-border);
}

.nfs-testimonial-card .avatar {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 94%);
  color: var(--nfs-primary);
  font-weight: 700;
}

.nfs-testimonial-card .customer-info strong {
  font-size: 0.9rem;
}

.nfs-testimonial-slider .swiper-button-prev,
.nfs-testimonial-slider .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.12);
  top: 42%;
}

.nfs-testimonial-slider .swiper-button-prev::after,
.nfs-testimonial-slider .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.nfs-testimonial-slider .swiper-pagination {
  bottom: 0;
}

.nfs-testimonial-slider .swiper-pagination-bullet-active {
  background: var(--nfs-primary);
}

@media (max-width: 640px) {
  .nfs-testimonial-slider .swiper-button-prev,
  .nfs-testimonial-slider .swiper-button-next {
    display: none;
  }
}

.nfs-center-msg {
  text-align: center;
  padding-block: 4rem;
}

.nfs-post-list {
  list-style: square;
}

.elementor-element.elementor-element-3a679cc0.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    padding: 4.5rem 0;
}
.nfs-testimonials {
padding: 4.5rem 0;
}
.nfs-page-hero__inner {
    max-width: 65rem;
}
.nfs-hero__lead, .nfs-page-hero__inner p {
	    font-size: 1.25rem;
}
.nfs-about-book__form-wrap{
	height: 600px;
	overflow: auto;
}
.nfs-about-book__grid{
	height:620px;
}
.our_visa_services, .nfs-testimonials{
	background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 97%);
}

.nfs-schengen{
    padding:90px 0;
}

.nfs-section-head{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

.nfs-section-head h2{
    font-size:42px;
    font-weight:700;
    color:#0d2d7b;
    margin-bottom:18px;
}

.nfs-section-head p{
    color:#555;
    line-height:1.7;
}

.nfs-country-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px 45px;
}

.nfs-country-card{
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    transition:.3s;
}

.nfs-country-card:hover{
    transform:translateY(-4px);
}

.nfs-country-flag{
    width:86px;
    height:58px;
    border:2px solid #1295ff;
    border-radius:50px;
    overflow:hidden;
    flex-shrink:0;
}

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

.nfs-country-content h3{
    margin:0;
    color:#0b2d73;
    font-size:28px;
    font-weight:700;
}

.nfs-country-content span{
    display:block;
    margin-top:6px;
    color:#444;
    font-size:16px;
}

@media(max-width:991px){

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

}

@media(max-width:640px){

.nfs-country-grid{
    grid-template-columns:1fr;
}

.nfs-country-card{
    gap:15px;
}

.nfs-country-content h3{
    font-size:22px;
}

}

/* =====================================================================
   New feature CSS — optional inner-page hero background, real icon
   badges for benefits/process steps, Schengen WhatsApp button badges,
   and the contact page map embed.
   ===================================================================== */

/* --- Optional background image on inner-page heroes (Services, Contact,
   Schengen, USA, Canada) — mirrors the homepage .nfs-hero--has-bg pattern. --- */
.nfs-page-hero--has-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nfs-page-hero--has-bg .nfs-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(10 15 30 / 0.55), rgb(10 15 30 / 0.72));
  pointer-events: none;
}

.nfs-page-hero--has-bg .nfs-page-hero__inner {
  position: relative;
  z-index: 1;
}

.nfs-page-hero--has-bg .nfs-page-hero__title,
.nfs-page-hero--has-bg .nfs-page-hero__lead,
.nfs-page-hero--has-bg .nfs-breadcrumb {
  color: #fff;
}

.nfs-page-hero--has-bg .nfs-page-hero__lead {
  color: rgb(255 255 255 / 0.88);
}

.nfs-breadcrumb {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--nfs-muted);
}

.nfs-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.nfs-breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Icon badges for "Why choose us" benefits and "Our process" steps --- */
.nfs-icon-badge {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 92%);
  color: var(--nfs-primary);
}

.nfs-icon-badge svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

.nfs-grid-4 .nfs-step:first-child::before,
.nfs-grid-4 .nfs-step:nth-child(n + 2)::before {
  content: none;
}

/* --- Schengen countries — flag + name + "Apply Now" as a WhatsApp button badge --- */
.nfs-country-card {
  padding: 0.85rem 1rem;
  border: 1px solid var(--nfs-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
}

.nfs-country-card:hover {
  border-color: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 80%);
  box-shadow: 0 14px 30px rgb(0 0 0 / 0.1);
}

.nfs-country-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: hsl(var(--nfs-primary-h) var(--nfs-primary-s) 94%);
  color: var(--nfs-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.nfs-country-content span::after {
  content: '\2192';
}

/* --- Contact page: map iframe below the "Get in touch" address cards --- */
.nfs-contact-map {
  margin-top: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--nfs-border);
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
}

.nfs-contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.nfs-country-card.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
