/* ═══════════════════════════════════════════════════════════
   NoticeSahayak — Inner Pages
   Inherits all theme variables from style.css
   ═══════════════════════════════════════════════════════════ */

/* ── Override body bg for landing-page look ── */
body.inner-page {
  background: var(--lp-bg3);
  color: var(--lp-text-b);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Minimal sticky nav ── */
.inner-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lp-nav-bg);
  border-bottom: 1px solid var(--lp-nav-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--lp-logo-c);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.inner-nav-logo span { color: #E85D1A; }

.inner-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-nav-actions .nav-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid var(--lp-nav-chip-br);
  background: var(--lp-nav-chip-bg);
  color: var(--lp-nav-chip-c);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.inner-nav-actions .nav-chip:hover { color: var(--lp-logo-c); filter: brightness(1.2); }

.inner-back-link {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--lp-nav-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.inner-back-link:hover { color: var(--lp-logo-c); }

/* ── Main content ── */
.inner-content {
  flex: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 24px 88px;
  width: 100%;
}

/* ── Hero block ── */
.inner-hero {
  margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--lp-divider);
}

.inner-hero-eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #E85D1A;
  margin-bottom: 14px;
}

.inner-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--lp-text-h);
  margin-bottom: 18px;
}

.inner-hero-sub {
  font-size: 1.05rem;
  color: var(--lp-text-b);
  line-height: 1.75;
  max-width: 640px;
}

/* ── Body prose ── */
.inner-body {
  color: var(--lp-text-b);
  font-size: 1rem;
  line-height: 1.82;
}

.inner-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--lp-text-h);
  margin: 48px 0 16px;
  line-height: 1.25;
}

.inner-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--lp-text-h);
  margin: 30px 0 10px;
}

.inner-body p { margin-bottom: 18px; }

.inner-body strong {
  color: var(--lp-text-h);
  font-weight: 600;
}

.inner-body ul, .inner-body ol {
  margin: 10px 0 20px 22px;
}
.inner-body li { margin-bottom: 9px; }

.inner-body a { color: #E85D1A; text-decoration: none; }
.inner-body a:hover { text-decoration: underline; }

/* ── Info card ── */
.inner-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-divider);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 26px 0;
}

.inner-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E85D1A;
  margin-bottom: 10px;
}

/* ── Notice/resource tag pill ── */
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,93,26,0.1);
  border: 1px solid rgba(232,93,26,0.28);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.77rem;
  font-weight: 600;
  color: #E85D1A;
  margin-bottom: 22px;
}

/* ── Two-col grid ── */
.inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.inner-grid-item {
  background: var(--lp-card);
  border: 1px solid var(--lp-divider);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.2s ease;
}
.inner-grid-item:hover { border-color: rgba(232,93,26,0.35); }

.inner-grid-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-text-h);
  margin-bottom: 7px;
}
.inner-grid-item p {
  font-size: 0.85rem;
  color: var(--lp-text-b);
  line-height: 1.6;
  margin: 0;
}

/* ── Stat row ── */
.inner-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.inner-stat {
  background: var(--lp-card);
  border: 1px solid var(--lp-divider);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}
.inner-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #E85D1A;
  line-height: 1;
  margin-bottom: 6px;
}
.inner-stat-label {
  font-size: 0.78rem;
  color: var(--lp-text-b);
  line-height: 1.4;
}

/* ── Table ── */
.inner-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.inner-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-footer-head);
  border-bottom: 1px solid var(--lp-divider);
}
.inner-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--lp-text-b);
  vertical-align: top;
}
[data-theme="light"] .inner-table td { border-bottom: 1px solid rgba(9,28,53,0.06); }
.inner-table tr:hover td { background: var(--lp-card); }
.inner-table td strong { color: var(--lp-text-h); }

/* ── Alert / highlight box ── */
.inner-alert {
  background: rgba(232,93,26,0.08);
  border-left: 3px solid #E85D1A;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 20px 0;
  color: var(--lp-text-b);
  font-size: 0.93rem;
}
.inner-alert strong { color: var(--lp-text-h); }

/* ── CTA block ── */
.inner-cta {
  margin: 52px 0 0;
  padding: 32px;
  background: rgba(232,93,26,0.07);
  border: 1px solid rgba(232,93,26,0.18);
  border-radius: 14px;
  text-align: center;
}
.inner-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--lp-text-h);
  margin-bottom: 10px;
}
.inner-cta p {
  color: var(--lp-text-b);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.inner-cta-btn {
  display: inline-block;
  background: #E85D1A;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.inner-cta-btn:hover { background: #C94E10; }

/* ── Footer ── */
.inner-footer {
  background: var(--lp-bg1);
  border-top: 1px solid var(--lp-footer-div);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.inner-footer-copy {
  font-size: 0.82rem;
  color: var(--lp-footer-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inner-footer-gstin {
  font-size: 0.76rem;
  color: var(--lp-footer-muted);
  opacity: 0.85;
  letter-spacing: 0.3px;
}

.inner-footer-links {
  display: flex;
  gap: 22px;
}
.inner-footer-links a {
  font-size: 0.82rem;
  color: var(--lp-footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.inner-footer-links a:hover { color: var(--lp-footer-hover); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .inner-nav { padding: 0 20px; }
  .inner-content { padding: 40px 20px 64px; }
  .inner-grid, .inner-stat-row { grid-template-columns: 1fr; }
  .inner-footer { padding: 22px 20px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .inner-hero-title { font-size: 1.75rem; }
  .inner-back-link span { display: none; }
}
