/* ==========================================================================
   MAHA POLICE BHARTI - LANDING PAGE STYLESHEET
   Mobile-First, Clean, Responsive Design
   ========================================================================== */

:root {
  --primary-navy: #0b1f3a;
  --secondary-navy: #132d54;
  --police-blue: #1d4ed8;
  --police-blue-light: #3b82f6;
  --accent-gold: #f59e0b;
  --accent-orange: #ea580c;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --danger-red: #ef4444;
  --success-green: #10b981;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* 1. Top Notice Bar */
.top-notice-bar {
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
}

.notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.notice-inner i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

/* 2. Site Header & Nav */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}

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

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--police-blue);
}

.nav-btn-del {
  color: var(--danger-red) !important;
}

.nav-btn-download {
  background: linear-gradient(135deg, var(--police-blue) 0%, #1e40af 100%);
  color: #ffffff !important;
  padding: 0.55rem 1.15rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-btn-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 1.2rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 1.25rem;
  border-top: 1px solid var(--border-color);
  gap: 1rem;
}

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

.mobile-nav-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  padding: 0.4rem 0;
}

.mobile-nav-link.text-danger {
  color: var(--danger-red);
}

.mobile-download-btn {
  background: var(--police-blue);
  color: #ffffff;
  text-align: center;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-admin-wrap {
  border-top: 1px dashed var(--border-color);
  padding-top: 0.75rem;
}

.mobile-admin-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
}

/* 3. Hero Section */
.hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(219, 234, 254, 0.6) 0%, rgba(255, 255, 255, 1) 70%);
  padding: 3.5rem 0 3rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--police-blue);
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--police-blue);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--police-blue) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.playstore-hero-btn img {
  height: 54px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.playstore-hero-btn img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.learn-more-btn:hover {
  background: var(--bg-light);
  border-color: var(--police-blue);
  color: var(--police-blue);
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.highlight-item i {
  color: var(--success-green);
}

.hero-banner-card {
  display: flex;
  justify-content: center;
}

.banner-glass-frame {
  background: #ffffff;
  padding: 0.85rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(11, 31, 58, 0.15), 0 0 0 1px rgba(226, 232, 240, 0.8);
  max-width: 100%;
}

.hero-banner-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* 4. Stats Strip */
.stats-strip {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 2.25rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.stat-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.stat-data h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.stat-data p {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* 5. Features Section */
.features-section {
  padding: 4.5rem 0;
  background-color: var(--bg-light);
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.sub-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--police-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
}

.section-heading p {
  font-size: 1rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.icon-blue { background: rgba(37, 99, 235, 0.1); color: var(--police-blue); }
.icon-orange { background: rgba(234, 88, 12, 0.1); color: var(--accent-orange); }
.icon-gold { background: rgba(245, 158, 11, 0.1); color: var(--accent-gold); }
.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--success-green); }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-red { background: rgba(239, 68, 68, 0.1); color: var(--danger-red); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}

/* 6. Big Banner Feature CTA */
.banner-cta-section {
  padding: 3rem 0 4.5rem 0;
  background-color: var(--bg-light);
}

.banner-cta-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  border-radius: 24px;
  padding: 3rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 20px 40px -10px rgba(11, 31, 58, 0.25);
}

.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.banner-cta-left h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.banner-cta-left p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.banner-cta-right {
  display: flex;
  justify-content: center;
}

.banner-cta-img {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* 7. Government Sources & Disclaimer */
.sources-section {
  padding: 4rem 0;
  background: #ffffff;
}

.disclaimer-card {
  border: 1px solid #fed7aa;
  background: #fffaf0;
  border-radius: 20px;
  padding: 2.25rem;
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.disclaimer-header i {
  font-size: 2rem;
  color: var(--accent-orange);
}

.disclaimer-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #7c2d12;
}

.disclaimer-header p {
  font-size: 0.85rem;
  color: #9a3412;
}

.disclaimer-body p {
  font-size: 0.92rem;
  color: #431407;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.sources-title {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 800;
  color: #7c2d12;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sources-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sources-list li {
  font-size: 0.88rem;
  color: #431407;
}

.sources-list a {
  color: var(--police-blue);
  font-weight: 600;
  text-decoration: underline;
  word-break: break-all;
}

/* 8. Footer */
.site-footer {
  background: #071324;
  color: #94a3b8;
  padding: 4rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #94a3b8;
}

.footer-download-badge img {
  height: 42px;
  border-radius: 6px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-col ul i {
  font-size: 0.7rem;
  color: var(--accent-orange);
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.contact-item i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-item span {
  display: block;
  font-weight: 600;
  color: #cbd5e1;
}

.contact-item a {
  color: var(--police-blue-light);
  text-decoration: none;
  word-break: break-all;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.admin-link-highlight {
  color: var(--accent-gold) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-pill {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-highlights {
    align-items: center;
  }
  .banner-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  .banner-cta-left .cta-btn-wrap {
    display: flex;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .section-heading h2 {
    font-size: 1.6rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }
  .playstore-hero-btn img {
    height: 48px;
  }
  .banner-cta-card {
    padding: 1.5rem;
  }
  .banner-cta-left h2 {
    font-size: 1.5rem;
  }
}
