/* 
  =============================================================================
  ANKUR YASHWANT RAUT - ULTRA-PREMIUM POLITICAL PORTFOLIO
  RESPONSIVE MEDIA QUERIES & MOBILE STYLES (RESPONSIVE.CSS)
  =============================================================================
*/

/* Mobile Sticky Bottom Quick Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 22, 31, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.6rem 0.5rem;
  z-index: 998;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-bar-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}

.mobile-bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: #CBD5E0;
  text-decoration: none;
  font-size: 0.72rem;
  font-family: var(--font-subheading);
  font-weight: 700;
}

.mobile-bottom-link i {
  font-size: 1.25rem;
  color: var(--primary-saffron);
}

.mobile-bottom-link.green i {
  color: #25D366;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content-box {
    align-items: center;
  }

  .hero-designation-list {
    border-left: none;
    padding-left: 0;
    align-items: center;
  }

  .hero-title-name {
    font-size: 3rem;
  }

  .hero-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .quick-stat-item {
    border-right: none;
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .counters-grid, .initiatives-grid, .news-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu-links, .header-navbar .btn-sm {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  /* Mobile Overlay Drawer */
  .nav-menu-links.mobile-drawer-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-saffron);
    gap: 1.2rem;
    z-index: 999;
  }

  .hero-title-name {
    font-size: 2.3rem;
  }

  .hero-designation-item {
    font-size: 1.05rem;
  }

  .hero-cta-group {
    justify-content: center;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

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

  .timeline-wrapper::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 55px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-dot {
    left: 9px !important;
    right: auto !important;
  }

  .counters-grid, .initiatives-grid, .news-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-quick-stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .floating-whatsapp-btn {
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }

  .scroll-top-btn {
    bottom: 142px;
    right: 20px;
  }
}
