:root{--page-title-display:none;}/* Start custom CSS *//* ── FONTS & DESIGN VARIABLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:   #1a3557;
  --teal:   #1b7a8c;
  --sky:    #e8f4f7;
  --white:  #ffffff;
  --cream:  #f8fafc;
  --gold:   #d4a84b;
  --text:   #2d3748;
  --muted:  #64748b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,53,87,0.10);
}

.gpn-body-wrapper {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gold); text-decoration: none; }

/* ── NAVBAR ── */
nav.gpn-nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); font-weight: 700; }
.logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: #c49638; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24527a 55%, var(--teal) 100%);
  color: white;
  padding: 80px 40px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,75,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,168,75,0.4); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* Hero Lead Form Card */
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: var(--text);
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card .sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1dce8;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: border-color .2s;
  background: white;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--teal);
}
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--teal); }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── STATS STRIP ── */
.stats {
  background: var(--cream);
  border-bottom: 1px solid #e2e8f0;
  padding: 32px 40px;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--navy); font-weight: 700;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── SECTIONS GENERAL ── */
.gpn-section { padding: 72px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 16px; color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e2eaf2;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--sky);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--teal); font-weight: 600; text-decoration: none; }
.service-link::after { content: ' →'; }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; padding: 12px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--navy); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  margin: 0 auto 18px;
}
.step h4 { font-size: 16px; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ── DESTINATION COUNTRIES ── */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.country-card {
  border: 1.5px solid #e2eaf2;
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
  background: white;
}
.country-card:hover { border-color: var(--teal); background: var(--sky); transform: translateY(-3px); }
.country-flag { font-size: 36px; margin-bottom: 10px; }
.country-name { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.country-info { font-size: 12px; color: var(--muted); }

/* ── LEAD CAPTURE BANNER ── */
.lead-banner {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  padding: 64px 40px;
}
.lead-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.lead-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}
.lead-inner h2 span { color: var(--gold); }
.lead-inner p { font-size: 15px; color: rgba(255,255,255,0.82); }
.lead-form-inline { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.lead-form-inline input {
  flex: 1; min-width: 180px;
  padding: 13px 16px;
  border-radius: 8px;
  border: none;
  font-size: 14px; font-family: 'DM Sans', sans-serif;
}
.lead-form-inline button {
  background: var(--gold); color: var(--navy);
  padding: 13px 24px;
  border: none; border-radius: 8px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.lead-form-inline button:hover { background: #c49638; }
.checklist { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── BLOG / RESOURCES ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: white;
  border: 1.5px solid #e2eaf2;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: var(--sky); color: var(--teal);
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 40px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.blog-card h4 { font-size: 16px; color: var(--navy); font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--muted); }
.blog-meta { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ── TESTIMONIALS ── */
.testi-bg { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; }
details {
  border: 1.5px solid #e2eaf2;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  background: white;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 20px; color: var(--teal); font-weight: 300; }
details[open] summary::after { content: '−'; }
details[open] summary { border-bottom: 1px solid #e2eaf2; }
.faq-ans { padding: 16px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; background: var(--cream); }

/* ── FOOTER ── */
footer.gpn-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 40px 30px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 20px; font-weight: 700;
  margin-bottom: 14px;
}
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 10px;
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 900px) {
  .hero-inner, .lead-inner { grid-template-columns: 1fr; }
  .services-grid, .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .gpn-section, .hero, .stats { padding-left: 20px; padding-right: 20px; }
  nav.gpn-nav { padding: 0 20px; }
  .countries-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}/* End custom CSS */