/**
 * Permanent Residency hub — Raab Group UAE
 */
:root {
  --pr-primary: #0a6b8a;
  --pr-primary-dark: #064a61;
  --pr-accent: #47b2e4;
  --pr-accent-soft: #eaf2ff;
  --pr-gold: #e8a020;
  --pr-navy: #0c2d48;
  --pr-light: #f0f6fa;
  --pr-text: #12263a;
}

.pr-hero-bg {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 45, 72, 0.9) 0%, rgba(10, 107, 138, 0.84) 45%, rgba(71, 178, 228, 0.75) 100%),
    url('../img/seo/pr-title.jpg') center center / cover no-repeat;
  min-height: 68vh;
  display: flex;
  align-items: center;
}

.pr-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(232, 160, 32, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.pr-hero-bg .hero-content-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 10px;
  margin-top: 90px;
}

.pr-hero-bg .hero-title-gold {
  color: var(--pr-gold) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.pr-hero-bg .hero-copy-readable {
  color: #f7f9fc !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 720px;
}

.pr-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pr-hero-badges span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.pr-hub-page .btn-get-started,
.pr-hub-page .btn-getstarted {
  background: var(--pr-primary);
  border-color: var(--pr-primary);
  border-radius: 8px !important;
}

.pr-hub-page .btn-get-started:hover,
.pr-hub-page .btn-getstarted:hover {
  background: var(--pr-primary-dark);
  border-color: var(--pr-primary-dark);
}

.pr-trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0 8px;
}

@media (max-width: 767px) {
  .pr-trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pr-trust-stat {
  text-align: center;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(12, 45, 72, 0.06);
}

.pr-trust-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pr-primary);
  line-height: 1.2;
}

.pr-trust-stat span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-navy);
  margin-top: 4px;
}

.pr-intro-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.pr-intro-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-intro-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 45, 72, 0.88) 0%, rgba(12, 45, 72, 0.35) 55%, transparent 100%);
}

.pr-intro-banner__content {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  color: #fff;
  max-width: 640px;
}

.pr-intro-banner__content h3 {
  color: var(--pr-gold);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.pr-intro-banner__content p {
  margin: 0 0 16px;
  line-height: 1.65;
  font-size: 15px;
}

.pr-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.pr-country-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  background: var(--pr-navy);
  box-shadow: 0 10px 28px rgba(12, 45, 72, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pr-country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 45, 72, 0.16);
}

.pr-country-card__img {
  position: absolute;
  inset: 0;
}

.pr-country-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.pr-country-card:hover .pr-country-card__img img {
  opacity: 0.55;
  transform: scale(1.04);
}

.pr-country-card__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(12, 45, 72, 0.95) 0%, rgba(12, 45, 72, 0.5) 60%, transparent 100%);
  color: #fff;
}

.pr-country-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.2);
  border: 1px solid rgba(232, 160, 32, 0.45);
  border-radius: 10px;
  font-size: 1.25rem;
  color: var(--pr-gold);
  margin-bottom: 12px;
}

.pr-country-card__overlay h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.pr-country-card__overlay p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.pr-country-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pr-gold);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.pr-country-card__link:hover {
  color: #fff;
}

.pr-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.pr-why-card {
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(12, 45, 72, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pr-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 107, 138, 0.28);
}

.pr-why-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pr-accent-soft);
  color: var(--pr-primary);
  border-radius: 10px;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.pr-why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pr-navy);
  margin-bottom: 8px;
}

.pr-why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pr-text);
  margin: 0;
}

.pr-benefits-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 991px) {
  .pr-benefits-compare {
    grid-template-columns: 1fr;
  }
}

.pr-benefits-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pr-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--pr-primary);
}

.pr-benefits-col h3 img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pr-benefit-item {
  border: 1px solid rgba(10, 107, 138, 0.14);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.pr-benefit-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--pr-light);
  transition: background 0.2s ease;
}

.pr-benefit-item__head:hover {
  background: var(--pr-accent-soft);
}

.pr-benefit-item__head h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--pr-navy);
}

.pr-benefit-item__head i {
  color: var(--pr-primary);
  transition: transform 0.2s ease;
}

.pr-benefit-item.open .pr-benefit-item__head i {
  transform: rotate(90deg);
}

.pr-benefit-item__body {
  display: none;
  padding: 14px 18px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--pr-text);
}

.pr-benefit-item.open .pr-benefit-item__body {
  display: block;
}

.pr-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.pr-process-step {
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(12, 45, 72, 0.05);
  position: relative;
  padding-top: 52px;
}

.pr-process-step__num {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pr-primary);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
}

.pr-process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pr-navy);
  margin-bottom: 8px;
}

.pr-process-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pr-text);
  margin: 0;
}

.pr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.pr-service-card {
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(12, 45, 72, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pr-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(12, 45, 72, 0.1);
}

.pr-service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pr-accent-soft);
  color: var(--pr-primary);
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.pr-service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pr-service-card h4 a {
  color: var(--pr-navy);
  text-decoration: none;
}

.pr-service-card h4 a:hover {
  color: var(--pr-primary);
}

.pr-service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pr-text);
  margin: 0;
}

.pr-cta-section {
  padding-top: 0;
}

.pr-cta-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(12, 45, 72, 0.16);
  border: 1px solid rgba(10, 107, 138, 0.14);
  background: #fff;
}

.pr-cta-showcase__media {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pr-cta-showcase__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-cta-showcase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 45, 72, 0.82) 0%, rgba(12, 45, 72, 0.25) 45%, transparent 100%);
  pointer-events: none;
}

.pr-cta-showcase__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--pr-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.pr-cta-showcase__badge i {
  color: var(--pr-gold);
}

.pr-cta-showcase__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.pr-cta-showcase__stat {
  text-align: center;
  padding: 16px 10px;
  background: rgba(12, 45, 72, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
}

.pr-cta-showcase__stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pr-gold);
  line-height: 1.2;
}

.pr-cta-showcase__stat span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.pr-cta-showcase__body {
  padding: 36px 40px 32px;
  background: linear-gradient(148deg, var(--pr-navy) 0%, var(--pr-primary-dark) 52%, var(--pr-primary) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pr-cta-showcase__body::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(232, 160, 32, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(71, 178, 228, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.pr-cta-showcase__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.pr-cta-showcase__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.18);
  border: 1px solid rgba(232, 160, 32, 0.45);
  border-radius: 14px;
  font-size: 1.45rem;
  color: var(--pr-gold);
}

.pr-cta-showcase__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-gold);
  margin-bottom: 6px;
}

.pr-cta-showcase__body h3 {
  position: relative;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.28;
  margin: 0;
}

.pr-cta-showcase__body h3 em {
  font-style: normal;
  color: var(--pr-gold);
}

.pr-cta-showcase__body > p {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 540px;
}

.pr-cta-showcase__features {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pr-cta-showcase__features li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.pr-cta-showcase__features li i {
  color: var(--pr-gold);
  font-size: 0.95rem;
}

.pr-cta-showcase__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.pr-cta-showcase__actions .btn-get-started {
  background: var(--pr-gold) !important;
  border-color: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
  font-weight: 700;
  padding: 13px 26px;
  box-shadow: 0 8px 22px rgba(232, 160, 32, 0.35);
}

.pr-cta-showcase__actions .btn-get-started:hover {
  background: #f0b030 !important;
  border-color: #f0b030 !important;
  color: var(--pr-navy) !important;
}

.pr-cta-showcase__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pr-cta-showcase__phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.pr-cta-showcase__offices {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pr-cta-showcase__offices span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.pr-cta-showcase__offices i {
  color: var(--pr-gold);
}

@media (max-width: 991px) {
  .pr-cta-showcase {
    grid-template-columns: 1fr;
  }

  .pr-cta-showcase__media {
    min-height: 240px;
  }

  .pr-cta-showcase__body {
    padding: 28px 24px;
  }
}

@media (max-width: 575px) {
  .pr-cta-showcase__stats {
    grid-template-columns: 1fr;
  }

  .pr-cta-showcase__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pr-cta-showcase__actions .btn-get-started,
  .pr-cta-showcase__phone {
    justify-content: center;
    text-align: center;
  }

  .pr-cta-showcase__head {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── Pre-contact consult showcase ── */
.pr-consult-section {
  padding-top: 0;
}

.pr-consult-showcase {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 45, 72, 0.14);
  border: 1px solid rgba(10, 107, 138, 0.14);
}

.pr-consult-showcase__main {
  position: relative;
  padding: 36px 40px 32px;
  background: linear-gradient(145deg, var(--pr-navy) 0%, var(--pr-primary-dark) 55%, var(--pr-primary) 100%);
  color: #fff;
}

.pr-consult-showcase__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(71, 178, 228, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(232, 160, 32, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.pr-consult-showcase__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-gold);
  margin-bottom: 12px;
}

.pr-consult-showcase__main h3 {
  position: relative;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 12px;
  max-width: 580px;
}

.pr-consult-showcase__main h3 em {
  font-style: normal;
  color: var(--pr-gold);
}

.pr-consult-showcase__main > p {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 20px;
  max-width: 600px;
}

.pr-seo-link--light {
  color: var(--pr-gold) !important;
  font-weight: 600;
}

.pr-seo-link--light:hover {
  color: #fff !important;
}

.pr-consult-showcase__routes {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pr-consult-showcase__route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pr-consult-showcase__route i {
  color: var(--pr-gold);
  font-size: 1rem;
}

.pr-consult-showcase__route:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(232, 160, 32, 0.55);
  color: #fff;
  transform: translateY(-1px);
}

.pr-consult-showcase__trust {
  position: relative;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pr-consult-showcase__trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.pr-consult-showcase__trust li i {
  color: var(--pr-gold);
  font-size: 0.95rem;
}

.pr-consult-showcase__panel {
  background: #fff;
  display: flex;
  align-items: stretch;
}

.pr-consult-showcase__panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 32px 28px;
  background: linear-gradient(180deg, #fff 0%, var(--pr-light) 100%);
  border-left: 1px solid rgba(10, 107, 138, 0.1);
}

.pr-consult-showcase__panel-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pr-primary);
  margin-bottom: 8px;
}

.pr-consult-showcase__panel-lead {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6b7d;
  margin: 0 0 20px;
}

.pr-consult-showcase__panel-inner .btn-get-started {
  background: var(--pr-gold) !important;
  border-color: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
  font-weight: 700;
  padding: 14px 20px;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(232, 160, 32, 0.3);
}

.pr-consult-showcase__panel-inner .btn-get-started:hover {
  background: #f0b030 !important;
  border-color: #f0b030 !important;
}

.pr-consult-showcase__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid var(--pr-primary);
  color: var(--pr-primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.pr-consult-showcase__phone:hover {
  background: var(--pr-primary);
  color: #fff;
}

.pr-consult-showcase__offices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 107, 138, 0.12);
  margin-bottom: 10px;
}

.pr-consult-showcase__offices span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pr-navy);
  line-height: 1.4;
}

.pr-consult-showcase__offices i {
  color: var(--pr-accent);
  flex-shrink: 0;
}

.pr-consult-showcase__hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #5a6b7d;
  margin: 0;
}

.pr-consult-showcase__hours i {
  color: var(--pr-primary);
}

@media (max-width: 991px) {
  .pr-consult-showcase {
    grid-template-columns: 1fr;
  }

  .pr-consult-showcase__main {
    padding: 28px 24px;
  }

  .pr-consult-showcase__panel-inner {
    padding: 28px 24px;
    border-left: none;
    border-top: 1px solid rgba(10, 107, 138, 0.1);
  }
}

@media (max-width: 575px) {
  .pr-consult-showcase__routes {
    flex-direction: column;
  }

  .pr-consult-showcase__route {
    justify-content: center;
  }

  .pr-consult-showcase__trust {
    flex-direction: column;
    gap: 10px;
  }
}

.pr-seo-block {
  background: var(--pr-light);
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 14px;
  padding: 28px 32px;
}

.pr-seo-block h3 {
  color: var(--pr-navy);
  font-weight: 700;
  margin-bottom: 14px;
}

.pr-seo-block p {
  color: #31475f;
  line-height: 1.75;
  margin-bottom: 12px;
}

.pr-seo-block a {
  color: var(--pr-primary);
  font-weight: 600;
}

.pr-sidebar-nav {
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 120px;
}

.pr-sidebar-nav h5 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pr-navy);
  margin-bottom: 14px;
}

.pr-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pr-sidebar-nav li {
  border-bottom: 1px solid rgba(10, 107, 138, 0.08);
}

.pr-sidebar-nav li:last-child {
  border-bottom: none;
}

.pr-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  color: var(--pr-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.pr-sidebar-nav a:hover {
  color: var(--pr-primary);
  padding-left: 8px;
}

.pr-sidebar-nav a i {
  color: var(--pr-accent);
}

.pr-sidebar-help {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-primary) 100%);
  border-radius: 12px;
  padding: 22px;
  color: #fff;
}

.pr-sidebar-help h5 {
  color: var(--pr-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.pr-sidebar-help p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .pr-sidebar-nav {
    position: static;
    margin-bottom: 28px;
  }
}

/* ── SEO links ── */
.pr-seo-link {
  color: var(--pr-primary);
  font-weight: 600;
  text-decoration: none;
}

.pr-seo-link:hover {
  color: var(--pr-primary-dark);
  text-decoration: underline;
}

/* ── Pathway detail cards ── */
.pr-pathway-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.pr-pathway-detail {
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(12, 45, 72, 0.06);
}

.pr-pathway-detail__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pr-accent-soft);
}

.pr-pathway-detail__head i {
  font-size: 1.5rem;
  color: var(--pr-primary);
}

.pr-pathway-detail__head h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  color: var(--pr-navy);
}

.pr-pathway-detail__head h3 a {
  color: inherit;
  text-decoration: none;
}

.pr-pathway-detail__head h3 a:hover {
  color: var(--pr-primary);
}

.pr-pathway-detail p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pr-text);
  margin-bottom: 14px;
}

.pr-pathway-detail ul {
  padding-left: 1.2rem;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--pr-text);
}

.pr-pathway-detail ul li {
  margin-bottom: 6px;
}

/* ── Requirements boxes ── */
.pr-req-box {
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(12, 45, 72, 0.05);
}

.pr-req-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pr-navy);
  margin-bottom: 16px;
}

.pr-req-box h3 i {
  color: var(--pr-primary);
  font-size: 1.25rem;
}

.pr-req-box ul {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--pr-text);
}

.pr-req-box ul li {
  margin-bottom: 8px;
}

/* ── Guides grid ── */
.pr-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.pr-guide-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(10, 107, 138, 0.12);
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  height: 100%;
  box-shadow: 0 4px 16px rgba(12, 45, 72, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pr-guide-card:hover {
  border-color: var(--pr-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(12, 45, 72, 0.1);
}

.pr-guide-card i {
  font-size: 1.5rem;
  color: var(--pr-primary);
  margin-bottom: 12px;
  display: block;
}

.pr-guide-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pr-navy);
  margin-bottom: 8px;
}

.pr-guide-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #5a6b7d;
  margin: 0;
}
