/* ============================================================
   PsychLine.in — Country Landing Pages
   Only country-specific additions. All section layout, cards,
   buttons, FAQ, etc. come from home.css via shared classes.
   ============================================================ */

/* No fixed nav padding on country pages */
body.hl-country { padding-top: 0; }

/* ── UNIFIED NAV ON COUNTRY PAGES ──
   Country pages render the country strip then the shared site nav (.hl-nav in
   "country mode"), both OUTSIDE #content (in baseof) so the mobile menu/overlay
   are not caught by the nav-open content blur.

   Layout model (mirrors site pages so the mobile menu, which is fixed at
   top:64px, lines up): the strip scrolls in normal flow at the very top; the
   nav is sticky and pins to top:0 on scroll. The mobile panel/overlay are fixed
   to the viewport and already start below the 64px nav. */
body.hl-country .hl-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
}
/* Strip sits above the sticky nav and scrolls away; the nav then pins to top. */
body.hl-country .hl-country-strip {
  position: relative;
  z-index: 201;
}

/* ── COUNTRY STRIP (thin bar at top) ── */
.hl-country-strip {
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}
.hl-country-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 60px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hl-country-strip-flag { font-size: 1.1rem; line-height: 1; }
.hl-country-strip-text { font-weight: 500; }
.hl-country-strip-link {
  margin-left: auto;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.hl-country-strip-link:hover { color: #8B1220; text-decoration: underline; }

/* ── COUNTRY NAV (sticky, replaces site nav) ── */
.hl-country-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  font-family: 'Raleway', sans-serif;
}
.hl-country-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hl-country-nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.hl-country-nav-logo span { color: var(--primary); }
.hl-country-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0 auto 0 0;
  padding: 0;
}
.hl-country-nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.hl-country-nav-links a:hover { color: var(--primary); }
.hl-country-nav-cta {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hl-country-nav-cta:hover { background: #8B1220; color: white; }

/* ── PRICING SECTION (unique to country pages) ── */
.hl-country-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.hl-country-pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hl-country-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}
.hl-country-pricing-card--popular {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(191, 26, 44, 0.1);
}
.hl-country-pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
}
.hl-country-pricing-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  padding: 0;
}
.hl-country-pricing-price { margin-bottom: 8px; }
.hl-country-pricing-inr {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.hl-country-pricing-local {
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 6px;
}
.hl-country-pricing-duration {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.hl-country-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hl-country-pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.hl-country-pricing-info { text-align: center; }
.hl-country-pricing-payment { font-size: 0.9rem; color: var(--text); margin: 0 0 6px; }
.hl-country-pricing-payment strong { color: var(--primary); }
.hl-country-pricing-no-sub { font-size: 0.85rem; color: var(--muted); margin: 0 0 6px; }
.hl-country-pricing-note { font-size: 0.8rem; color: var(--muted); margin: 0; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hl-country-strip-inner { padding: 8px 24px; }
  .hl-country-pricing-grid { grid-template-columns: 1fr; }
}
