/* =========================================================
   home.css — Homepage-specific stylesheet
   Palette: navy (#0b2e59), orange (#f5821f), white
   Reproduces the approved reference design 1:1.
   ========================================================= */

:root {
  --hp-navy: #0b2e59;
  --hp-navy-dark: #082140;
  --hp-navy-mid: #123a6e;
  --hp-orange: #f5821f;
  --hp-orange-dark: #d96e0f;
  --hp-bg-section: #eef2f7;
  --hp-text-body: #5c6b7a;
  --hp-text-muted: #8592a1;
  --hp-border: #e1e7ee;
  --hp-white: #ffffff;
  --hp-radius: 12px;
  --hp-shadow: 0 10px 30px rgba(11, 46, 89, 0.08);
  --hp-shadow-lg: 0 20px 45px rgba(11, 46, 89, 0.16);
  font-synthesis: none;
}

.hp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

body.hp-body {
  background: var(--hp-white);
  color: var(--hp-text-body);
}

/* ---------- Header ---------- */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--hp-white);
  border-bottom: 1px solid var(--hp-border);
}
.hp-header .hp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.hp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.hp-logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--hp-navy);
}
.hp-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hp-logo-text strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--hp-navy);
  letter-spacing: 0.2px;
}
.hp-logo-text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--hp-orange);
}
.hp-logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: none;
}
.hp-logo--footer {
  background: var(--hp-white);
  padding: 10px 16px;
  border-radius: 10px;
  line-height: 0;
}
.hp-footer .hp-logo-img {
  height: 56px;
  background: transparent;
}

.hp-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hp-nav a,
.hp-nav button.hp-nav-dropdown-btn {
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-navy);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  position: relative;
  font-family: inherit;
}
.hp-nav a:not(.hp-portal-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--hp-orange);
  transition: width 0.25s ease;
}
.hp-nav a:not(.hp-portal-btn):hover::after,
.hp-nav a:not(.hp-portal-btn)[aria-current="page"]::after {
  width: 100%;
}
.hp-nav a:not(.hp-portal-btn):hover,
.hp-nav button.hp-nav-dropdown-btn:hover {
  color: var(--hp-orange);
}
.hp-nav-dropdown-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.hp-nav-item {
  position: relative;
}
.hp-nav-item.open .hp-nav-dropdown-btn svg {
  transform: rotate(180deg);
}
.hp-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--hp-white);
  border-radius: 10px;
  box-shadow: var(--hp-shadow-lg);
  border: 1px solid var(--hp-border);
  min-width: 190px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.hp-nav-item.open .hp-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hp-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--hp-navy);
}
.hp-dropdown-menu a::after { display: none; }
.hp-dropdown-menu a:hover {
  background: var(--hp-bg-section);
  color: var(--hp-orange);
}
.hp-dropdown-menu img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }

.hp-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--hp-navy);
  border-radius: 8px;
  color: var(--hp-navy);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.hp-portal-btn:hover {
  background: var(--hp-navy);
  color: var(--hp-white);
  transform: translateY(-1px);
  box-shadow: var(--hp-shadow);
}
.hp-portal-btn svg { width: 16px; height: 16px; }

.hp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hp-navy);
  padding: 6px;
}
.hp-nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero navy band ---------- */
.hp-hero-band {
  background: linear-gradient(160deg, var(--hp-navy) 0%, var(--hp-navy-dark) 100%);
  padding: 40px 0 0;
  color: var(--hp-white);
}

.hp-search-row {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 36px;
}
.hp-search-wrap { position: relative; flex: 1; }
.hp-search-row input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: none;
  padding: 0 20px;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--hp-navy);
  outline: none;
}
.hp-search-row input::placeholder { color: #9aa5b1; }
.hp-search-btn {
  height: 56px;
  padding: 0 30px;
  background: var(--hp-orange);
  color: var(--hp-white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.hp-search-btn:hover { background: var(--hp-orange-dark); transform: translateY(-1px); }
.hp-search-btn svg { width: 18px; height: 18px; }

.hp-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--hp-white);
  border-radius: 10px;
  box-shadow: var(--hp-shadow-lg);
  overflow: hidden;
  z-index: 60;
  max-height: 340px;
  overflow-y: auto;
  display: none;
  text-align: left;
}
.hp-search-suggest.open { display: block; }
.hp-search-suggest-group-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  padding: 10px 16px 4px;
}
.hp-search-suggest a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--hp-navy);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
}
.hp-search-suggest a:hover,
.hp-search-suggest a.hp-active { background: var(--hp-bg-section); color: var(--hp-orange); }
.hp-search-suggest a mark {
  background: #ffe6c9;
  color: var(--hp-orange-dark);
  border-radius: 3px;
  padding: 0 1px;
}
.hp-search-suggest .hp-no-results {
  padding: 22px 16px;
  text-align: center;
  color: var(--hp-text-muted);
  font-size: 14px;
}

.hp-hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 32px;
}
.hp-hero-card {
  text-align: center;
  padding: 8px 18px 24px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.hp-hero-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.04); }
.hp-hero-card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(245,130,31,0.55);
  border-radius: 12px;
  color: var(--hp-orange);
  transition: transform 0.3s ease, background 0.3s ease;
}
.hp-hero-card:hover .hp-hero-card-icon {
  background: var(--hp-orange);
  color: var(--hp-white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(245,130,31,0.35);
}
.hp-hero-card-icon svg { width: 28px; height: 28px; }
.hp-hero-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--hp-white);
  margin: 0 0 10px;
}
.hp-hero-card p {
  font-size: 13.5px;
  color: #b9c4d1;
  line-height: 1.55;
  margin: 0 0 14px;
}
.hp-hero-card-underline {
  width: 34px;
  height: 3px;
  background: var(--hp-orange);
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.hp-hero-card:hover .hp-hero-card-underline { width: 56px; }

.hp-quick-row {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.12);
}
.hp-quick-row ul {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-quick-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #dfe6ee;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.hp-quick-row a svg { width: 18px; height: 18px; flex-shrink: 0; }
.hp-quick-row a:hover { color: var(--hp-white); background: rgba(245,130,31,0.18); transform: translateY(-2px); }
.hp-quick-row .divider { width: 1px; background: rgba(255,255,255,0.14); margin: 6px 0; }

/* ---------- Section shell ---------- */
.hp-section { padding: 64px 0; }
.hp-section.hp-alt { background: var(--hp-bg-section); }
.hp-section-head { text-align: center; margin-bottom: 40px; }
.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hp-orange);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.hp-eyebrow svg { width: 18px; height: 18px; }
.hp-section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--hp-navy);
  margin: 0 0 8px;
}
.hp-section-head p { color: var(--hp-text-body); font-size: 15.5px; margin: 0; }

/* ---------- Popular Services ---------- */
.hp-services-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.hp-tabs {
  display: inline-flex;
  background: var(--hp-white);
  border-radius: 10px;
  padding: 5px;
  box-shadow: var(--hp-shadow);
  margin-bottom: 26px;
}
.hp-tab-btn {
  border: none;
  background: none;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--hp-text-body);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.hp-tab-btn.active { background: var(--hp-navy); color: var(--hp-white); }
.hp-tab-btn:not(.active):hover { color: var(--hp-navy); }

.hp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-service-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 20px 18px;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: hpFadeUp 0.45s ease forwards;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@keyframes hpFadeUp { to { opacity: 1; transform: translateY(0); } }
.hp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-orange);
}
.hp-service-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: #fff2e4;
  border-radius: 10px;
  color: var(--hp-orange);
  transition: transform 0.3s ease;
}
.hp-service-card:hover .hp-service-icon { transform: scale(1.1); background: var(--hp-orange); color: var(--hp-white); }
.hp-service-icon svg { width: 22px; height: 22px; }
.hp-service-card h3 { font-size: 15.5px; font-weight: 700; color: var(--hp-navy); margin: 0 0 6px; }
.hp-service-card p { font-size: 13px; line-height: 1.5; color: var(--hp-text-body); margin: 0 0 12px; flex: 1 0 auto; }
.hp-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--hp-orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
}
.hp-apply-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.hp-service-card:hover .hp-apply-link svg { transform: translateX(4px); }

.hp-quicklinks {
  margin-top: 61px;
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 24px 22px;
  box-shadow: var(--hp-shadow);
}
.hp-quicklinks h3 { font-size: 18px; font-weight: 800; color: var(--hp-navy); margin: 0 0 14px; }
.hp-quicklinks ul { list-style: none; margin: 0; padding: 0; }
.hp-quicklinks li + li { border-top: 1px solid var(--hp-border); }
.hp-quicklinks a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 2px;
  color: var(--hp-navy);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.hp-quicklinks a svg { width: 16px; height: 16px; color: var(--hp-orange); flex-shrink: 0; transition: transform 0.2s ease; }
.hp-quicklinks a:hover { color: var(--hp-orange); transform: translateX(4px); }

/* ---------- Popular Countries ---------- */
.hp-country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-country-card {
  position: relative;
  border-radius: var(--hp-radius);
  overflow: hidden;
  height: 220px;
  text-decoration: none;
  display: block;
  box-shadow: var(--hp-shadow);
}
.hp-country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hp-country-card:hover img { transform: scale(1.12); }
.hp-country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,46,89,0) 35%, rgba(8,33,64,0.88) 100%);
  transition: background 0.3s ease;
}
.hp-country-card:hover::after { background: linear-gradient(180deg, rgba(11,46,89,0.15) 0%, rgba(8,33,64,0.94) 100%); }
.hp-country-card-body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--hp-white);
}
.hp-country-card-body strong { display: block; font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.hp-country-card-body span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffd4a8;
}
.hp-country-card-body svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.hp-country-card:hover .hp-country-card-body svg { transform: translateX(5px); }

/* ---------- Testimonials ---------- */
.hp-testi-wrap { position: relative; max-width: 100%; margin: 0 auto; overflow: hidden; }
.hp-testi-track { display: flex; transition: transform 0.5s ease; }
.hp-testi-slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 4px; }
.hp-testi-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 18px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-testi-card:hover { transform: translateY(-5px); box-shadow: var(--hp-shadow-lg); }
.hp-testi-quote-mark { color: var(--hp-orange); width: 26px; height: 20px; margin-bottom: 8px; }
.hp-testi-card p.hp-quote { font-size: 13.5px; line-height: 1.6; color: var(--hp-text-body); margin: 0 0 14px; }
.hp-testi-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.hp-testi-stars svg { width: 14px; height: 14px; color: var(--hp-orange); }
.hp-testi-person strong { display: block; font-size: 14px; color: var(--hp-navy); font-weight: 700; }
.hp-testi-person span { font-size: 12.5px; color: var(--hp-text-muted); }
.hp-testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.hp-testi-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: #cdd6e0; cursor: pointer; padding: 0;
  transition: all 0.25s ease;
}
.hp-testi-dots button.active { background: var(--hp-orange); width: 26px; border-radius: 5px; }

/* ---------- FAQ two-column with countries (shared row) ---------- */
.hp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.hp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hp-faq-item {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.hp-faq-item:hover { border-color: var(--hp-orange); }
.hp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--hp-navy);
  font-family: inherit;
}
.hp-faq-trigger svg { width: 18px; height: 18px; color: var(--hp-orange); flex-shrink: 0; transition: transform 0.25s ease; }
.hp-faq-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.hp-faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.hp-faq-panel-inner { padding: 0 18px 16px; font-size: 14px; line-height: 1.65; color: var(--hp-text-body); }

/* ---------- Bottom CTA ---------- */
.hp-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp-cta-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 30px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hp-cta-card:hover { transform: translateY(-6px); box-shadow: var(--hp-shadow-lg); border-color: var(--hp-orange); }
.hp-cta-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px;
  display: grid; place-items: center; background: var(--hp-navy); color: var(--hp-orange);
}
.hp-cta-icon svg { width: 24px; height: 24px; }
.hp-cta-card h3 { font-size: 16.5px; font-weight: 700; color: var(--hp-navy); margin: 0 0 4px; }
.hp-cta-card p { font-size: 13.5px; color: var(--hp-text-body); margin: 0 0 10px; line-height: 1.55; }
.hp-cta-card a { color: var(--hp-orange); font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.hp-cta-card a svg { width: 14px; height: 14px; transition: transform .2s ease; }
.hp-cta-card a:hover svg { transform: translateX(4px); }

/* ---------- Share row ---------- */
.hp-share-row { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 30px 0 10px; }
.hp-share-row span { font-size: 14px; color: var(--hp-text-muted); font-weight: 600; margin-right: 4px; }
.hp-share-btn {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--hp-bg-section); color: var(--hp-navy); text-decoration: none;
  transition: all 0.2s ease; border: none; cursor: pointer;
}
.hp-share-btn svg { width: 17px; height: 17px; }
.hp-share-btn:hover { background: var(--hp-orange); color: var(--hp-white); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.hp-footer { background: var(--hp-navy-dark); color: #b9c4d1; padding: 50px 0 0; }
.hp-footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hp-footer .hp-logo-text strong { color: var(--hp-white); }
.hp-footer-links { display: flex; gap: 26px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.hp-footer-links a { color: #b9c4d1; text-decoration: none; font-weight: 600; font-size: 14.5px; transition: color 0.2s ease; }
.hp-footer-links a:hover { color: var(--hp-orange); }
.hp-footer-social { display: flex; gap: 10px; }
.hp-footer-social a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: var(--hp-white); transition: all 0.2s ease;
}
.hp-footer-social svg { width: 16px; height: 16px; }
.hp-footer-social a:hover { background: var(--hp-orange); transform: translateY(-3px); }
.hp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 24px;
  padding: 22px 0; font-size: 13px; color: #8a97a8;
}
.hp-footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.hp-footer-bottom-links a { color: #8a97a8; text-decoration: none; }
.hp-footer-bottom-links a:hover { color: var(--hp-orange); }
.hp-footer-updated { margin: 0; color: #8a97a8; }

/* ---------- Skeleton loading ---------- */
.hp-skel { position: relative; overflow: hidden; background: #e6ebf1; border-radius: 8px; }
.hp-skel::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: hpShimmer 1.3s infinite;
}
@keyframes hpShimmer { 100% { transform: translateX(100%); } }

/* ---------- Scroll reveal reused from app.js [data-animate] ---------- */
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Shared widget overrides for homepage theme ---------- */
body.hp-body .back-to-top { background: var(--hp-navy); }
body.hp-body .back-to-top:hover { background: var(--hp-orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hp-hero-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hp-service-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-country-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-services-layout { grid-template-columns: 1fr; }
  .hp-two-col { grid-template-columns: 1fr; }
  .hp-cta-grid { grid-template-columns: 1fr; }
  .hp-testi-slide { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hp-nav, .hp-portal-btn { display: none; }
  .hp-nav-toggle { display: block; }
  .hp-nav.mobile-open {
    display: flex; flex-direction: column; position: fixed; inset: 76px 0 0 0;
    background: var(--hp-white); padding: 20px 24px; gap: 4px; overflow-y: auto; z-index: 199;
    align-items: stretch;
  }
  .hp-nav.mobile-open a, .hp-nav.mobile-open button.hp-nav-dropdown-btn { padding: 14px 4px; border-bottom: 1px solid var(--hp-border); width: 100%; justify-content: space-between; }
  .hp-nav.mobile-open .hp-dropdown-menu { position: static; box-shadow: none; transform: none; opacity: 1; visibility: visible; display: none; border: none; padding-left: 12px; }
  .hp-nav.mobile-open .hp-nav-item.open .hp-dropdown-menu { display: block; }
  .hp-nav.mobile-open .hp-portal-btn { display: flex; margin-top: 12px; justify-content: center; }
  body.hp-nav-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .hp-search-row { flex-direction: column; }
  .hp-search-btn { justify-content: center; }
  .hp-hero-cards { grid-template-columns: 1fr 1fr; }
  .hp-service-grid { grid-template-columns: 1fr; }
  .hp-country-grid { grid-template-columns: 1fr; }
  .hp-quick-row ul { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 14px 20px; }
  .hp-section { padding: 44px 0; }
  .hp-section-head h2 { font-size: 24px; }
  .hp-footer-top { flex-direction: column; align-items: flex-start; }
}
