body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #fff;
  position: relative;
}

body.offcanvas-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
}


p {
  color: #000000;
  font-weight: 400;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

/* ================= LEGAL PAGES ================= */

.legal-page {
  padding: 80px 0 120px;
  background: #ffffff;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.license-section {
  width: 100%;
  padding: 40px 0;
}

.license-image {
  width: 100%;
  height: auto;        /* keeps original ratio */
  display: block;
  object-fit: contain; /* ensures full image is visible */
}

.legal-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.legal-header p {
  font-size: 15px;
  color: #6b7280;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 40px 0 10px;
  color: #111827;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 6px;
}

.legal-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 50px 0;
}

/* Mobile */
@media (max-width: 576px) {
  .legal-page {
    padding: 60px 0 80px;
  }

  .legal-header h1 {
    font-size: 26px;
  }
}


.slide-link {
  position: absolute;
  inset: 0;
  display: block;
}


.visa-slider .item {
  height: 380px;
}

.visa-slide {
  display: block;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

/* =========================== GLOBAL COLOR VARIABLES =========================== */
:root {
  --gold: #c9a14a;
  --theme: #00674F;
  --themeDark: #004D3A;
  --black: #000000;
}

/* ================= BLOG PAGE ================= */

.blogs-page-grid {
  padding: 60px 0 100px;
}

.blog-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-link {
  display: block !important;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

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

/* Mobile */
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PRICING GRID (THEME MATCHED) ================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Card */
.pricing-card {
  text-decoration: none;
  color: inherit;
}

/* Image = same behavior as blog/country */
.pricing-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift (matches blog/country) */
.pricing-card:hover .pricing-image {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Content */
.pricing-content {
  text-align: center;
  padding: 0 6px;
}

.pricing-grid-section {
  padding: 30px 0;
}

/* Visa type */
.pricing-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* Amount = gold like blog date */
.pricing-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

/* CTA = same as blog read more */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--theme);
  background: var(--theme);
  color: #fff;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Hover */
.pricing-card:hover .pricing-btn {
  background: var(--themeDark);
  border-color: var(--themeDark);
}


/* HERO */
.blog-hero {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(65, 45, 4),
    rgba(150, 100, 0)
  );
  display: flex;
  align-items: center;
}

.blog-hero h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}

/* HERO META STRIP */
.blog-hero-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 200;
}

.blog-hero-meta strong {
  font-weight: 300;
  color: #fff;
}

.blog-hero-meta .dot {
  opacity: 0.7;
}

.blog-meta {
  color: #f3f3f3;
  margin-top: 12px;
  font-size: 14px;
}

/* GRID */
.blog-detail-section {
  padding: 60px 0;
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
}

/* CONTENT */
.blog-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}

.blog-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}

/* SIDEBAR */
.blog-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.author-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.author-card h4 {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 600;
}

.toc-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}

.toc-item {
  display: block;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
  transition: 0.2s;
}

.toc-item:hover {
  color: var(--theme);
  text-decoration: underline;
}

.share-box p {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
}

.author-bio {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

.share-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.share-icons {
  display: flex;
  gap: 12px;
}

.related-articles h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card {
  text-decoration: none;
  color: inherit;
}

.related-image {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
}

.related-card p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.share-icons a {
  width: 36px;
  height: 36px;
  background: #f2f2f2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.share-icons svg {
  width: 16px;
  height: 16px;
  fill: #111;
}

.share-icons a:hover {
  background: var(--theme);
}

.share-icons a:hover svg {
  fill: #fff;
}


/* TOC */
.toc-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.toc-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 991px) {
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-hero h1 {
    font-size: 30px;
  }
}

/* Blog Card */
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-image {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Content */
.blog-content {
  padding-right: 10px;
}

.blog-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 6px;

  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}


.blog-date {
  font-size: 13px;
  color: #c9a14a;   /* gold */
  margin-bottom: 10px;
  font-weight: 500;
}

/* 2-line clamp */
.blog-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 14px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more */
/* Read more button */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--theme);
  color: #fff;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  background: var(--theme);
  transition: all 0.3s ease;
}

.blog-read-more .arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

/* Hover */
.blog-card:hover .blog-read-more {
  background: var(--themeDark);
  color: #fff;
}

.blog-card:hover .blog-read-more .arrow {
  transform: translateX(6px);
}


.blog-read-more .arrow {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more .arrow {
  transform: translateX(6px);
}


/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: #ffffff;
  padding: 60px 0 30px;
}

.contact-tag {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--theme);
  font-weight: 600;
}

.contact-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 12px 0;
  color: #111827;
}

.contact-hero p {
  font-size: 16px;
  color: #4b5563;
}

.contact-section {
  position: relative;
  background: #fffaf0;
  padding: 120px 0 120px;
  overflow: hidden;
}

/* CURVE */
/* TOP SEMI-CIRCLE CURVE */
.contact-section::before {
  content: "";
  position: absolute;
  left: -12%;
  top: -180px;                 
  width: 124%;
  height: 240px;
  background: #ffffff;
  border-radius: 0 0 50% 50%; 

  z-index: 0;
}


/* CONTENT ABOVE CURVE */
.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;

  transition: 
    background-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.icon-location {
  background-image: url("/assets/images/icon/location.svg");
}

.icon-phone {
  background-image: url("/assets/images/icon/phone.svg");
}

.icon-mail {
  background-image: url("/assets/images/icon/mail.svg");
}

.contact-item:hover .contact-icon {
  background-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.contact-item {
  cursor: pointer;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--gold)
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--theme);
  outline: none;
}

/* Phone */
.phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-input .flag {
  font-size: 20px;
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: #d4a437;
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: #b88d2f;
}

/* ================= CONTACT PAGE – MOBILE CENTER ALIGN ================= */

@media (max-width: 768px) {

  /* HERO */
  .contact-hero {
    text-align: center;
    padding: 60px 0 60px;
  }

  .contact-hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .contact-hero p {
    max-width: 320px;
    margin: 0 auto;
  }

  /* GRID STACK */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* LEFT INFO */
  .contact-info {
    align-items: center;
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

 .contact-item p {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.6;
}

  /* FORM CARD */
  .contact-form-card {
    padding: 30px 22px;
  }

  /* FORM ROWS */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group label {
    text-align: left; /* labels readable */
  }

  /* PHONE INPUT */
  .phone-input {
    justify-content: center;
  }

  /* BUTTON */
  .btn-submit {
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}


/* =========================== NAVBAR GOLD (NO BOLD) =========================== */
/* Desktop menu */
.site-navbar .site-navigation .site-menu>li>a:hover {
  color: var(--theme) !important;
}

.site-navbar .site-navigation .site-menu>li.active>a {
  color: var(--theme) !important;
}

/* Dropdown items */
.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  color: var(--theme) !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.active>a {
  color: var(--theme) !important;
}

/* Parent item when dropdown open */
.site-navbar .site-navigation .site-menu .has-children:hover>a {
  color: var(--gold) !important;
}

/* Sticky header */
.sticky-wrapper.is-sticky .site-navbar ul li a:hover {
  color: var(--gold) !important;
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
  color: var(--goldf) !important;
}

/* Mobile menu */
.site-mobile-menu .site-nav-wrap a:hover {
  color: var(--gold) !important;
}

.site-mobile-menu .site-nav-wrap .active > a,
.site-mobile-menu .site-nav-wrap a:hover {
  color: var(--gold);
}

/* =========================== HEADER APPLY NOW BUTTON =========================== */
.header-cta {
  display: inline-block;
  margin-left: 25px;
}


.visa-detail-hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.visa-hero-image {
  width: 100%;
  height: 420px;          
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
}

.visa-detail-content {
  padding: 30px 0;
}

.visa-detail-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.visa-detail-content .lead {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.visa-highlight-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  position: sticky;
  top: 120px;
}

.visa-summary {
  font-size: 16px;
  margin: 20px 0 28px;
}

.visa-highlight-mobile {
  display: none;
}

/* Mobile */
@media (max-width: 991.98px) {
  .visa-highlight-desktop {
    display: none;
  }

  .visa-highlight-mobile {
    display: block;
    margin: 40px 0;
  }

  /* Disable sticky on mobile */
  .visa-highlight-card {
    position: static;
  }
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.highlight-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #ddd;
}

.highlight-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-list span {
  font-size: 14px;
  font-weight: 400;
  color: #111827;
}

.highlight-list strong {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.icon-doc,
.icon-bed,
.icon-clock {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


.icon-doc {
  background-image: url("/assets/images/icon/doc-text.svg");
}

.icon-clock {
  background-image: url("/assets/images/icon/clock.svg");
}

.btn-gold.full {
  background: var(--theme);
  color: #fff;
  padding: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
}

.icon-whatsapp {
  display: inline-flex;
  flex-shrink: 0;
}

.btn-outline-gold.full {
  border: 2px solid var(--theme);
  color: var(--theme);
  padding: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* ================= VISA FAQ – HEADING SIZE FIX ================= */

.visa-faq-section .section-header h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
}

/* Mobile stays same */
@media (max-width: 576px) {
  .visa-faq-section .section-header h2 {
    font-size: 24px;
  }
}


.visa-ribbon {
  position: relative;
  background: var(--theme);
  color: #fff;
  padding: 18px 20px;
  margin: -24px -24px 24px;
  border-radius: 16px 16px 0 0;
}

.visa-ribbon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 14px;
  background: var(--theme);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.visa-country {
  display: block;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
}

.visa-ribbon-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.highlight-head {
  background: #c89b2c;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}



.highlight-list li span {
  color: #000;
}

.highlight-list li strong {
  font-weight: 600;
}

.btn-gold.full,
.btn-outline-gold.full {
  display: block;
  text-align: center;
  margin-top: 12px;
}


/* Button base */
.btn-apply-now {
  display: inline-block;
  padding: 10px 22px;
  border: 1.8px solid var(--theme);
  border-radius: 6px;
  color: var(--theme);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover state */
.btn-apply-now:hover {
  background-color: var(--theme);
  border-color: var(--theme);
  color: #ffffff !important;
  text-decoration: none;
}

/* Sticky header adjustment */
.sticky-wrapper.is-sticky .btn-apply-now {
  border-color: var(--theme);
  color: var(--theme);
}

.sticky-wrapper.is-sticky .btn-apply-now:hover {
  background-color: var(--theme);
  color: #ffffff !important;
}

/* Mobile hide (optional – matches template behavior) */
@media (max-width: 991.98px) {
  .header-cta {
    display: none;
  }
}

/* =========================== VISA HERO SECTION =========================== */
.visa-hero {
  position: relative;
  padding: 120px 0 160px;
  overflow: hidden;

  background:
    /* gradient overlay for readability */
    linear-gradient(
      180deg,
      rgba(255, 247, 230, 0.92) 0%,
      rgba(255, 242, 209, 0.88) 55%,
      rgba(255, 255, 255, 0.95) 100%
    ),
    /* background image */
    url("/assets/images/banner-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===========================
   GRID-ALIGNED SECTION DIVIDER
   =========================== */
.section-divider-full {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin: 70px 0 80px;
}


/* subtle background circles (optional, matches reference) */
.visa-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -80px;
  width: 124%;
  height: 200px;

  background: rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 0 0;

  z-index: 0;
}

/* BOTTOM WAVE */
.visa-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -160px;
  width: 120%;
  height: 240px;

  background: #ffffff;
  border-radius: 50% 50% 0 0;

  z-index: 1;
}



/* Ensure content stays above background */
.visa-hero .container {
  position: relative;
  z-index: 2;
}

/* Left content */
.visa-hero-content h1 {
  font-size: 52px;
  font-weight: 800;                 
  line-height: 1.15;
  letter-spacing: -0.5px;          
  margin-bottom: 18px;
  color: #000000;  
}

.visa-hero-content h1 span {
  color: var(--theme);
  font-weight: 800;
}

.visa-hero-content p {
  font-size: 16px;
  font-weight: 400;                
  color: #4b5563;         
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 28px;
}


.visa-features {
  display: flex;
  gap: 25px;
  padding: 0;
  margin-bottom: 30px;
  list-style: none;
}

.visa-features li {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* Buttons */
.visa-hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary-gold {
  background: var(--theme);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  display: inline-block;
}

.btn-primary-gold:hover {
  background-color: var(--themeDark);
  border-color: var(--themeDark);
  color: #ffffff !important;
  text-decoration: none;
}


.btn-outline-gold {
  border: 1.5px solid var(--theme);
  color: var(--theme);
  background: transparent;
  padding: 12px 22px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-outline-gold:hover {
  background-color: var(--themeDark);
  border-color: var(--theme);
  color: #ffffff !important;
  text-decoration: none;
}

/* Slider */
.visa-slider .visa-slide {
  height: 380px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* =========================== SLIDER DOTS OVER IMAGE =========================== */
/* Slider container must be relative */
.visa-slider {
  position: relative;
}

/* Position dots over image */
.visa-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
  margin-top: 0 !important;
}

/* Individual dash */
.visa-slider .owl-dot span {
  width: 26px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
}

/* Active dash */
.visa-slider .owl-dot.active span {
  background: #c9a14a;
}

.visa-slider .owl-dot:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

/* =========================== WHO WE ARE SECTION =========================== */
.who-we-are {
  padding: 30px 0 0px;
}

.section-header {
  margin-bottom: 50px;
}

.inclusive-visa .section-header {
  margin-bottom: 30px;
}

.inclusive-visa .section-header p {
  max-width: 620px;
}

.section-tag {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}


.section-header h2 {
  font-size: 36px;
  font-weight: 600;                
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #111827;                
  margin-bottom: 24px;
}

.section-header h2 br {
  display: block;
}

.gold-text {
  color: var(--theme);
}

.section-header p {
  max-width: 550px;               
  margin: 0 auto 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);           
}


/* ================= GOOGLE REVIEWS ================= */

.google-reviews-section {
  padding: 80px 0;
  background: #ffffff;
}

.google-reviews-wrapper {
  max-width: 980px;               /* aligns with your content rhythm */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* IFRAME */
.google-reviews-wrapper iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  background: #ffffff;
}

/* MOBILE */
@media (max-width: 576px) {
  .google-reviews-section {
    padding: 50px 0;
  }

  .google-reviews-wrapper iframe {
    height: 460px;
  }
}

/* ================= FAQ TEXT COLOR FIX ================= */

/* FAQ question text */
.faq-question {
  color: #111827 !important;   /* dark neutral */
}

/* When active (opened) */
.faq-item.active .faq-question {
  color: #111827 !important;
}

/* Prevent iOS blue tap text */
.faq-question {
  -webkit-text-fill-color: #111827;
}


/* FAQ phone line */
.faq-phone,
.faq-phone strong,
.faq-phone a {
  color: #374151 !important; /* neutral dark */
  text-decoration: none !important;
}

/* Icon stays gold */
.faq-phone .icon-phone {
  color: var(--gold);
}

/* Disable iOS auto-link styling */
.faq-section a,
.faq-section button {
  -webkit-tap-highlight-color: transparent;
  color: inherit;
}

.faq-arrow {
  border-right-color: var(--gold);
  border-bottom-color: var(--gold);
}

/* =========================== COUNTRY GRID =========================== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.countries-page-grid .country-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1200px) {
  .countries-page-grid .country-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile – 2 per row */
@media (max-width: 767px) {
  .countries-page-grid .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.country-card {
  text-align: center;
  color: inherit;
}

/* Title default */
.country-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #000000; /* BLACK */
  transition: color 0.25s ease;
}

/* Remove anchor default blue */
.country-card,
.country-card:hover,
.country-card:visited {
  color: inherit;
}

/* Hover = theme color */
.country-card:hover h5 {
  color: var(--theme);
}

.country-card {
  text-align: center;
}

.country-image {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countries-page-grid .country-image {
  height: 180px;   /* increase from 140px */
}

/* Large screens (optional fine-tune) */
@media (min-width: 1400px) {
  .countries-page-grid .country-image {
    height: 200px;
  }
}

/* Tablet – keep balanced */
@media (max-width: 1200px) {
  .countries-page-grid .country-image {
    height: 160px;
  }
}

/* Mobile – keep existing */
@media (max-width: 767px) {
  .countries-page-grid .country-image {
    height: 120px; /* SAME as your current mobile */
  }
}

.country-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Hover effect */
.country-card:hover .country-image {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===========================
   RESPONSIVE – COUNTRY GRID
   =========================== */

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

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

/* MOBILE – FORCE 2 PER ROW */
@media (max-width: 767px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .country-image {
    height: 120px;
    border-radius: 12px;
  }

  .country-card h5 {
    font-size: 15px;
    font-weight: 700;
  }
}

/* ===========================
   EXPLORE MORE BUTTON
   =========================== */

.explore-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--theme);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.3s ease;
  overflow: hidden;
}

.btn-explore .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 16px;
}

/* Hover animation */
.btn-explore:hover {
  background: var(--themeDark);
  color: #fff;
}

.btn-explore:hover .arrow {
  transform: translateX(6px);
}

/* ===========================
   ALL INCLUSIVE VISA SERVICE
   =========================== */

.inclusive-visa {
  padding: 25px 0;
  background: #ffffff;
}

/* Image */
.inclusive-image {
  border-radius: 24px;
  overflow: hidden;
}

.inclusive-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features list */
.inclusive-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
}

.inclusive-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusive-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.inclusive-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

/* Buttons */
.inclusive-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-dark .icon-phone {
  font-size: 14px;
  line-height: 1;
}
.service-icon {
  display: none;
}

@media (max-width: 767.98px) {

  /* Center everything */
  .inclusive-visa {
    text-align: center;
  }

  /* One column */
  .inclusive-features {
    grid-template-columns: 1fr;
  }

  /* List item layout */
  .inclusive-features li {
    display: flex;
    flex-direction: column;      /* icon on top */
    align-items: center;
    gap: 6px;                    /* space between icon & text */
    margin-bottom: 18px;
    padding: 0;
    font-size: 14px;
  }

  /* REMOVE DOT COMPLETELY */
  .inclusive-features li::before {
    content: none !important;
  }

  /* SHOW ICON */
  .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
  }

  /* Buttons spacing */
  .inclusive-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
  }

  .inclusive-actions a {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }
}

/* ================= VISA TAILORED ================= */

.visa-tailored {
  position: relative;
  background: #fffaf0;
  padding: 120px 0 160px;
  overflow: hidden;
}

.visa-tailored::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -25%;
  width: 150%;
  height: 280px;

  background: #ffffff;
  border-radius: 0 0 50% 50%;

  z-index: 0;
}

/* Keep content above curve */
.visa-tailored .container {
  position: relative;
  z-index: 1;
}


.tailored-header h2 span {
  color: var(--gold);
}

/* ================= VISA DIFFERENCE – ICON SYSTEM ================= */

.diff-card::before {
  content: "";
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--theme);
  margin-bottom: 18px;
  border-radius: 10px;
  background-color: #fff7e6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}

/* ================= VISA DIFFERENCE – CARD TYPOGRAPHY ================= */

.diff-card:nth-child(1)::before {
  background-image: url("/assets/images/check.svg");
}

.diff-card:nth-child(2)::before {
  background-image: url("/assets/images/support.svg");
}

.diff-card:nth-child(3)::before {
  background-image: url("/assets/images/accuracy.svg");
}

.diff-card:nth-child(4)::before {
  background-image: url("/assets/images/transparent.svg");
}

.diff-card:nth-child(5)::before {
  background-image: url("/assets/images/user.svg");
}

.diff-card h3 {
  font-size: 17px;
  font-weight: 600;           
  color: #111827;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}


.tailored-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}

.tailored-stats h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme);
  margin-bottom: 6px;
}

.tailored-stats p {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563; /* SAME as section paragraphs */
  margin: 0;
}
/* ================= FLOATING BLACK CARD ================= */

.tailored-cta-section {
  position: relative;
  margin-top: -120px;   /* pulls into yellow */
  margin-bottom: -120px; /* pushes into white */
  z-index: 10;
}

.tailored-cta {
  height: 320px;
  background: #000;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

/* LEFT CONTENT */
.cta-content {
  padding: 36px;
  color: #fff;
}

.cta-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
}

.cta-content h3 {
  font-size: 28px;
  margin: 16px 0;
}

.cta-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 35px;
  margin-top: 35px;
}

/* RIGHT IMAGE – FULL HEIGHT WITH GRADIENT */
.cta-image {
  position: relative;
  background:
    linear-gradient(
      to left,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.4) 35%,
      rgba(0,0,0,0) 65%
    ),
    url("/assets/images/cta-avatar.png") center / cover no-repeat;
}

/* ================= WHITE SECTION BELOW ================= */

.visa-difference {
  background: #ffffff;
  padding: 200px 0 120px; /* space for overlap */
  position: relative;
  z-index: 1;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

.cta-content {
    order: 2;
  }

  .cta-image {
    order: 1;
  }

  .cta-image {
    margin: 16px;
    border-radius: 18px;
  }

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

  .tailored-cta {
    grid-template-columns: 1fr;
    height: auto;
  }

  .cta-image {
    height: 220px;
  }

  .cta-content {
    text-align: center;
    padding: 40px 30px;
  }

  .tailored-cta-section {
    margin-top: -80px;
    margin-bottom: -80px;
  }
}

@media (max-width: 576px) {

   .cta-content h2 {
    font-size: 26px;          
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
    max-width: 300px;
    margin: 0 auto 12px;
    color: #ffffff;
  }

  .cta-content p {
    font-size: 15px;        
    line-height: 1.8;
    max-width: 340px;
    margin: 25px auto 35px;
    color: #d1d5db;          
  }

  .tailored-stats {
    grid-template-columns: 1fr;
  }

  .visa-tailored-header {
    margin-top: 50px;
  }
.section-divider-full {
    margin: 50px 0 60px;
  }

  .section-header {
    margin-bottom: 45px;
  }

  /* WHO WE ARE tag */
  .section-tag {
    font-size: 13px; 
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--black);             
  }

  /* Heading */
  .section-header h2 {
    font-size: 26px;              
    font-weight: 700;
    line-height: 1.3;
    margin-top: 16px;            
    letter-spacing: -0.2px;
    margin-bottom: 16px;
  }

  /* Paragraph */
  .section-header p {
    max-width: 350px;              
    font-size: 15px;               
    font-weight: 400;              
    line-height: 1.8;             
    margin: 0 auto 16px;
    color: var(--black);       
  }
}

/* ================= VISA DIFFERENCE ================= */

.visa-difference {
  background: #ffffff;
  padding: 200px 0 60px; /* top padding absorbs overlap */
  position: relative;
  z-index: 1;
}

.difference-title {
  font-size: 36px;
  font-weight: 700;
  margin: 12px 0 18px;
}

.difference-desc {
  font-size: 15px;
  color: #555;
  max-width: 520px;
}

/* IMAGES */
.difference-images {
  position: relative;
  text-align: right;
}

.difference-images img {
  width: 240px;
  border-radius: 18px;
}

.img-top {
  position: absolute;
  top: -40px;
  right: 90px;
  z-index: 1;
}

.img-bottom {
  position: relative;
  z-index: 2;
}

/* FEATURE CARDS */
.difference-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.diff-card {
  background: #f9fafb;       
  padding: 36px 28px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diff-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  color: #555;
}

/* MOBILE */
@media (max-width: 991px) {

  .visa-difference .section-header {
    text-align: center;
    margin: 0 auto;
  }

  .visa-difference .section-header h2,
  .visa-difference .section-header p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .difference-images {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 60px;
  }

  .img-top {
    right: 40px;
  }
}

@media (max-width: 576px) {

  .visa-difference {
    background: #ffffff;
    padding: 160px 0 60px; /* top padding absorbs overlap */
    position: relative;
    z-index: 1;
  }

  .visa-difference .section-header h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
  }

  .visa-difference .section-header p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 350px;
    margin: 0 auto;
    color: var(--black);
  }

  .difference-cards {
    grid-template-columns: 1fr;
  }
}
.cta-image {
  background:
    linear-gradient(
      to left,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.4) 35%,
      rgba(0,0,0,0) 65%
    ),
    url("/assets/images/apply-now.jpg") center / cover no-repeat;
}

.tailored-cta-inline {
  margin-top: 30px !important;
  margin-bottom: 80px !important;
  position: relative;
  z-index: 1;
}

.tailored-cta-notop-inline {
  margin-bottom: 80px !important;
  position: relative;
  z-index: 1;
}

/* ================= ABOUT HERO ================= */

.about-hero {
  background: #FFFBF6;
  padding: 80px 0 60px;
  text-align: center;
}

.about-hero .container {
  max-width: 720px;
}

/* Title */
.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--theme); /* matches gold/green branding */
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Subtitle */
.about-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .about-hero {
    padding: 60px 0 50px;
  }

  .about-title {
    font-size: 27px;
    line-height: 1.3;
  }

  .about-subtitle {
    font-size: 16px;
    max-width: 320px;
  }
}


/* ================= FAQ SECTION ================= */

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  line-height: 1.6;
  word-break: break-word;
}

.faq-arrow {
  flex-shrink: 0;
  margin-top: 6px;
}

.faq-section .section-header {
  margin-bottom: 40px;
}

/* Phone line */
.faq-phone {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.faq-phone .icon-phone {
  color: var(--gold);
  margin-right: 6px;
}


.faq-section {
  background: #ffffff;
  padding: 30px 0;
}

/* FAQ List */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: #fff;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  align-items: flex-start;    
  gap: 14px;      
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}


/* Arrow */
.faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

/* Rotate arrow */
.faq-item.active .faq-arrow {
  transform: rotate(-135deg);
}

/* ANSWER WRAPPER (animation magic) */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  opacity: 0;
}

/* Inner content */
.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  transform: translateY(-6px);
  transition: transform 0.35s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer-wrapper {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .faq-answer p {
  transform: translateY(0);

}

.faq-header h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #111827;
  margin-bottom: 24px;
}


/* Mobile */
@media (max-width: 576px) {

.visa-tailored-header h2 {
    font-size: 26px;        
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
    max-width: 300px;
    margin: 0 auto 12px;
  }

  .visa-tailored-header p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 350px;
    font-weight: 400;
    margin: 0 auto 24px;
    color: #4b5563;
  }
  
  .tailored-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
    margin-top: 20px;
  }

  .faq-section .section-header h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
  }

  .faq-section .section-header p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 340px;
    margin: 0 auto 14px;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 14px;
  }
}

/* REMOVE BLUE FOCUS BORDER ON CLICK */
.faq-question {
  outline: none;
  box-shadow: none;
}

.faq-question:focus {
  outline: none;
  box-shadow: none;
}

.faq-question:focus-visible {
  outline: none;
  box-shadow: none;
}

/* ALSO REMOVE TAP HIGHLIGHT (mobile) */
.faq-question {
  -webkit-tap-highlight-color: transparent;
}

/* ================= STILL HAVE QUESTIONS CTA ================= */

.faq-cta-card .icon-whatsapp {
  font-size: 23px;  
  line-height: 1;
}

.faq-cta-card .btn-cta {
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}

.faq-cta {
  background: #ffffff;
}

.faq-cta-card h3 {
  font-size: 22px;    
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #111827;
}


.faq-cta-card {
  width: 100%;
  background: #F9FAFB;
  border-radius: 20px;
  padding: 48px 32px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-avatars {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

/* BASE IMAGE */
.faq-avatars img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: #fff;
}

/* LEFT IMAGE */
.faq-avatars img:nth-child(1) {
  width: 50px;
  height: 50px;
  position: relative;
  left: 10px;
  z-index: 1;
  opacity: 0.9;
}

/* CENTER IMAGE (MAIN / LARGEST) */
.faq-avatars img:nth-child(2) {
  width: 60px;
  height: 60px;
  z-index: 3;
}

/* RIGHT IMAGE */
.faq-avatars img:nth-child(3) {
  width: 50px;
  height: 50px;
  position: relative;
  right: 10px;
  z-index: 1;
  opacity: 0.9;
}

.faq-cta-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.faq-cta-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 570px;
  margin: 0 auto 22px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  font-size: 14px;
}

/* ================= FEATURED IN ================= */

.featured-in {
  padding: 50px 0 100px;
  background: #ffffff;
}

.featured-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 50px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.featured-logos img {
  height: 60px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.featured-logos img:hover {
  opacity: 1;
  filter: none;
}

/* Hide mobile slider on desktop */
.featured-logos-mobile {
  display: none;
}

/* Desktop remains unchanged */
.desktop-only {
  display: flex;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .desktop-only {
    display: none;
  }

  .featured-logos-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    overflow: hidden;
  }

  .featured-logos-mobile img {
    height: 60px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .featured-logos-mobile img.active-logo {
    opacity: 1;
    transform: translateX(0);
  }

  .faq-cta-card {
    padding: 32px 18px;
  }

  .featured-logos {
    gap: 30px;
  }

  .featured-logos img {
    height: 22px;
  }

  .visa-tailored::before {
    top: -80px;
    height: 180px;
  }
}

.btn-gold {
  background: var(--theme);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-gold:hover {
  background: var(--themeDark);
  color: #fff;
}

.btn-dark {
  background: #111;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.btn-dark:hover {
  background: #000;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 991px) {

  .inclusive-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

.faq-avatars img:nth-child(1),
  .faq-avatars img:nth-child(3) {
    width: 50px;
    height: 50px;
  }

  .faq-avatars img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .faq-cta-card h3 {
    font-size: 20px;
  }

  .inclusive-visa {
    padding: 25px 0;
  }

  .inclusive-actions {
    justify-content: center;
  }
}
.faq-cta-card h3 {
    font-size: 18px;
  }

.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.top-bar {
  padding: .5rem 0;
  background: #eee;
}

.top-bar a {
  color: #666666;
}

.site-navbar {
  margin-bottom: 0;
  z-index: 1999;
  position: relative;
  width: 100%;
  padding: 12px 0;
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding: 10px 0;
  }
}


.site-navbar .toggle-button {
  position: absolute;
  right: 0px;
}

.site-navbar .site-logo {
  position: absolute;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0;
  margin: 0;
  padding: 0;
  z-index: 3;
}

/* LOGO IMAGE FIX */
.site-navbar .site-logo img {
  display: block;
  max-height: 60px;
  width: auto;
}


.site-navbar .site-menu-toggle:hover .icon-menu {
  color: var(--theme);
}

.site-navbar .site-menu-toggle.active .icon-menu {
  color: var(--theme);
}

@media (max-width: 991.98px) {
  .site-navbar .icon-menu {
    color: var(--theme);
  }
}

/* Desktop menu hover */
.site-navbar .site-navigation .site-menu > li > a:hover {
  color: var(--theme) !important;
}

/* Active item */
.site-navbar .site-navigation .site-menu > li.active > a {
  color: var(--theme) !important;
}

/* Dropdown hover */
.site-navbar .site-navigation .dropdown > li > a:hover {
  color: var(--theme) !important;
}

.sticky-wrapper.is-sticky .icon-menu {
  color: var(--theme) !important;
}


/* Mobile logo */
@media (max-width: 991.98px) {
  .site-navbar .site-logo img {
    max-height: 50px;
  }
}

.site-navbar {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 991.98px) {
  .site-navbar .site-logo {
    float: left;
    position: relative;
  }
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}


.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li>a {
  margin-left: 15px;
  margin-right: 15px;
  padding: 20px 0px;
  color: #000 !important;
  display: inline-block;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #007bff;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  display: none;
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #007bff !important;
  background: #f8f9fa;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: block;
  background: transparent;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ================= VISA TAILORED – CONTENT POSITIONING ================= */

.visa-tailored-header {
  margin-top: 30px; /* pushes heading into curved bg */
}

/* ===========================
   COUNTRIES PAGE (NEW ONLY)
   =========================== */

/* Hero */
.countries-page-hero {
  position: relative;
  min-height: 230px;
  padding: 70px 0 40px;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 247, 230, 0.9) 60%,
      rgba(255, 242, 209, 0.95) 100%
    );
}


.countries-page-hero::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;

  width: 520px;
  height: 100%;

  background-image: url("/assets/images/visa-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;

  opacity: 0.16;
  pointer-events: none;
}


.countries-page-hero .container {
  position: relative;
  z-index: 2;
}

/* Tablet */
@media (max-width: 991px) {
  .countries-page-hero {
    min-height: 180px;
  }

  .countries-page-hero::after {
    width: 380px;
    opacity: 0.13;
  }
}

@media (max-width: 576px) {
  .countries-page-hero {
    padding: 50px 0 30px;
    min-height: 200px;
    text-align: center;
  }

  .countries-page-hero::after {
    width: 240px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0.12;
    background-position: center bottom;
  }
}

.countries-page-hero h1 {
  font-size: 36px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
  text-align: center;
}

.countries-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}



/* Search */
.countries-search {
  max-width: 520px;
  margin: 0 auto;
}

.countries-search input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  outline: none;
}

.countries-search input:focus {
  border-color: var(--theme);
}

/* Grid section spacing */
.countries-page-grid {
  padding: 60px 0 100px;
}

/* Mobile tweaks only for hero */
@media (max-width: 576px) {
  .countries-page-hero {
    padding: 60px 0 40px;
  }

  .countries-page-hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }
}


/* ===========================
   VISA HERO – MOBILE FIX
   =========================== */

@media (max-width: 991.98px) {

  .visa-hero {
    padding: 40px 0 100px;
    text-align: center;
    background-position: center top;
  }

  .visa-hero::after {
    bottom: -80px;
    height: 160px;
  }

  .visa-hero::before {
    bottom: -60px;
    height: 120px;
  }

  .visa-hero-content {
    margin-top: 30px;
  }

  .visa-hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .visa-hero-content p {
    font-size: 15px;
  }

  .visa-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .visa-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .visa-hero-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Slider smaller on mobile */
  .visa-slider .visa-slide {
    height: 260px;
  }

  /* Slider dots closer */
  .visa-slider .owl-dots {
    bottom: 12px;
  }
}

.offcanvas-menu .site-mobile-menu {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}


.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

.site-mobile-menu .site-mobile-menu-close {
  margin-top: 0;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu-close span {
  color: #fff;
  font-size: 26px;
}

.site-mobile-menu-close span:hover {
  color: var(--gold);
}


.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #ced4da;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  width: 88%;
  max-width: 360px;
}

.offcanvas-menu .site-mobile-menu-body {
  transform: translateY(0);
}


.site-mobile-menu .site-nav-wrap a {
  padding: 12px 0;
  display: block;
  font-size: 15px;
  color: #eaeaea;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 0;
  font-size: 15px;
}

.site-mobile-menu .site-nav-wrap a:hover,
.site-mobile-menu .site-nav-wrap .active > a {
  color: var(--gold);
}

.site-mobile-menu .arrow-collapse::before {
  color: #aaa;
}

.site-mobile-menu .arrow-collapse:hover::before {
  color: var(--theme);
}

.site-mobile-menu {
  box-shadow: none;
}


.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar {
  background: #fff;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.sticky-wrapper .site-navbar ul li a.active {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #fff;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #007bff;
}

.sticky-wrapper.is-sticky .site-navbar ul li a {
  color: #000 !important;
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
  color: #007bff !important;
}

.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

@media (max-width: 991.98px) {
  .sticky-wrapper .shrink {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
