:root {
  --primary: #0a5c36;
  --primary-dark: #063d24;
  --primary-light: #1a8a52;
  --secondary: #c9a227;
  --secondary-dark: #a07d18;
  --accent: #d4af37;
  --success: #2e7d32;
  --warning: #f9a825;
  --error: #c62828;
  --neutral-50: #f8faf8;
  --neutral-100: #eef2ee;
  --neutral-200: #dce4dc;
  --neutral-300: #b8c5b8;
  --neutral-400: #8a9a8a;
  --neutral-500: #6b7a6b;
  --neutral-600: #4a5a4a;
  --neutral-700: #2e3a2e;
  --neutral-800: #1a241a;
  --neutral-900: #0d140d;
  --white: #ffffff;
  --card-bg: #ffffff;
  --text: #1a241a;
  --text-muted: #4a5a4a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-width: 960px;
  --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-urdu);
  background: var(--neutral-50);
  color: var(--text);
  line-height: 2;
  direction: rtl;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); text-decoration: underline; }

img { max-width: 100%; height: auto; border-radius: var(--radius); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 16px 0;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.logo-area .site-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.logo-area .site-title a {
  color: var(--white);
  text-decoration: none;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 15px;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 18px;
}

/* Navigation */
.main-nav {
  background: var(--primary);
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.main-nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
}

.main-nav a {
  color: rgba(255,255,255,0.9);
  padding: 14px 16px;
  font-size: 17px;
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(0,0,0,0.15);
  border-bottom-color: var(--accent);
  color: var(--white);
  text-decoration: none;
}

/* Hamburger for mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero .subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0;
}

.hero-stat {
  background: rgba(255,255,255,0.12);
  padding: 16px 28px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 120px;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero-stat .label {
  font-size: 15px;
  opacity: 0.9;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--secondary-dark));
  color: var(--neutral-900);
  font-family: var(--font-urdu);
  font-size: 22px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1.5;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.5);
  color: var(--neutral-900);
  text-decoration: none;
}

.download-btn-sm {
  font-size: 18px;
  padding: 12px 30px;
}

.download-btn .icon {
  font-size: 26px;
}

/* Content sections */
.content-section {
  padding: 40px 0;
}

.content-section h2 {
  font-size: 30px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.5;
  border-right: 5px solid var(--accent);
  padding-right: 14px;
}

.content-section h3 {
  font-size: 24px;
  color: var(--primary);
  margin: 28px 0 14px;
  line-height: 1.5;
}

.content-section h4 {
  font-size: 20px;
  color: var(--primary);
  margin: 22px 0 10px;
  line-height: 1.5;
}

.content-section p {
  margin-bottom: 18px;
  line-height: 2.1;
  font-size: 18px;
}

.content-section ul,
.content-section ol {
  margin-bottom: 18px;
  padding-right: 24px;
  line-height: 2.1;
}

.content-section li {
  margin-bottom: 10px;
}

.content-section strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--neutral-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* Image showcase */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.image-showcase figure {
  text-align: center;
}

.image-showcase img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

.image-showcase figcaption {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

/* Rating section */
.rating-section {
  background: linear-gradient(135deg, var(--neutral-100), var(--white));
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 30px 0;
}

.rating-section .big-rating {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.rating-section .big-stars {
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 4px;
  margin: 8px 0;
}

.rating-section .rating-text {
  font-size: 18px;
  color: var(--text-muted);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.review-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--neutral-200);
}

.review-card .review-stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card .review-text {
  font-size: 17px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 14px;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card .reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.review-card .reviewer-info .name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
}

.review-card .reviewer-info .location {
  font-size: 14px;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  margin: 30px 0;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item details {
  padding: 0;
}

.faq-item summary {
  padding: 18px 22px;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 10px;
}

.faq-item details[open] summary::after {
  content: '−';
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  font-size: 17px;
  line-height: 2.1;
  color: var(--text);
}

/* Table */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.styled-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 16px;
  text-align: right;
  font-size: 17px;
}

.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 16px;
}

.styled-table tr:last-child td {
  border-bottom: none;
}

.styled-table tr:nth-child(even) {
  background: var(--neutral-50);
}

/* Call to action */
.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 36px 0;
}

.cta-box h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Conclusion */
.conclusion-box {
  background: linear-gradient(135deg, var(--neutral-100), var(--white));
  border-right: 5px solid var(--primary);
  padding: 30px;
  border-radius: var(--radius);
  margin: 30px 0;
}

.conclusion-box h2 {
  border-right: none;
  padding-right: 0;
}

/* Pros and cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pros-box, .cons-box {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.pros-box {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
}

.cons-box {
  background: #fbe9e9;
  border: 1px solid #ef9a9a;
}

.pros-box h3, .cons-box h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.pros-box h3 { color: var(--success); }
.cons-box h3 { color: var(--error); }

.pros-box ul, .cons-box ul {
  padding-right: 20px;
}

.pros-box li, .cons-box li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.9;
}

/* Steps */
.steps-list {
  counter-reset: step;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  counter-increment: step;
  padding: 16px 60px 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  position: relative;
  box-shadow: var(--shadow);
  font-size: 17px;
  line-height: 1.9;
  border-right: 3px solid var(--primary);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 40px 0 20px;
  margin-top: 40px;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--neutral-300);
  font-size: 16px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-700);
  font-size: 15px;
}

.footer-bottom .disclaimer {
  margin-top: 10px;
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 15px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 6px;
}

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 17px; }

  .hero h1 { font-size: 28px; }
  .hero .subtitle { font-size: 17px; }

  .content-section h2 { font-size: 24px; }
  .content-section h3 { font-size: 20px; }
  .content-section h4 { font-size: 18px; }

  .nav-toggle { display: block; }

  .main-nav .nav-inner {
    flex-direction: column;
    display: none;
  }

  .main-nav.open .nav-inner {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat {
    min-width: 100px;
    padding: 12px 18px;
  }

  .hero-stat .num { font-size: 22px; }

  .download-btn { font-size: 18px; padding: 14px 30px; }

  .rating-section .big-rating { font-size: 42px; }

  .logo-area .site-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 24px; }
  .content-section h2 { font-size: 22px; }
  .review-card { padding: 18px; }
  .cta-box { padding: 28px 18px; }
}
