﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap");

:root {
  --bg-main: #ffffff;
  --bg-subtle: #fafafa;
  --bg-header: rgba(255, 255, 255, 0.95);
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --border-dark: #d1d5db;
  --accent: #000000;
  --accent-hover: #374151;
  --link-color: #2563eb;
  
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Outfit", "Inter", sans-serif;

  --radius: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* Header */
.custom-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.custom-header .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo h2 {
  border: none;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--accent);
  cursor: pointer;
}

/* Page Layout */
.page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Hero Wrap */
.jharbhoomi-wrap {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.jharbhoomi-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.jharbhoomi-intro {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.jharbhoomi-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.jharbhoomi-btn {
  background: var(--bg-main);
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.jharbhoomi-btn:hover {
  border-color: var(--accent);
  text-decoration: none;
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.jharbhoomi-btn:first-child {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.jharbhoomi-btn:first-child:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* Grids and Services */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.quick-links a {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.quick-links a:hover {
  border-color: var(--border-dark);
  background: var(--bg-subtle);
}

/* Sections */
.jharbhoomi-section {
  scroll-margin-top: 100px;
}

.content-box {
  margin-bottom: 2rem;
}

.content-box ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
  list-style-type: disc;
}

.content-box li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
  display: block;
}

/* FAQs */
.jharbhoomi-faq {
  padding-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
  padding: 1.25rem 0;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}

.faq-item h3::after {
  content: "+";
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-item.active h3::after {
  content: "";
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 1.25rem;
}

/* Table of Contents */
.jharbhoomi-table {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 4rem;
}

.jharbhoomi-table h3 {
  margin-top: 0;
}

.jharbhoomi-table ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.jharbhoomi-table a {
  color: var(--link-color);
  font-size: 0.95rem;
}

/* Footer */
.custom-footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-main);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h2 {
  font-size: 1.1rem;
  border: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.9rem;
}

.use-slt-link li {
  margin-bottom: 0.75rem;
}

.use-slt-link a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-bottom-row {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-header);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .jharbhoomi-title {
    font-size: 2rem;
  }

  .page-container {
    padding-top: 2rem;
  }
}

