/* ========================================
   GLOBAL MOBILE RESPONSIVE CSS
======================================== */

@media (max-width: 1024px) {
  .container {
    width: 92%;
  }

  .hero-grid,
  .upcoming {
    grid-template-columns: 1fr;
  }

  .projects-grid,
  .about-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   TABLET / MOBILE
======================================== */

@media (max-width: 850px) {
  .nav-inner {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand img {
    height: 44px;
  }

  .menu {
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
    background-position: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .map-wrap {
    padding: 10px;
    border-radius: 20px;
  }

  .tooltip {
    width: 180px;
    font-size: 0.78rem;
  }

  .marker {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .gallery-item {
    min-width: 230px;
    height: 170px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container {
    width: 94%;
  }

  .projects-grid,
  .about-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 65px 0 45px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
  }

  .stat {
    padding: 20px;
  }

  .stat strong {
    font-size: 1.8rem;
  }

  .upcoming-card,
  .poll-card,
  .content-card,
  .info-card {
    padding: 22px;
    border-radius: 20px;
  }

  .poll-option {
    font-size: 0.95rem;
    padding: 14px;
  }

  .partner-logo {
    min-width: 150px;
    height: 90px;
  }

  .partner-logo img {
    max-width: 115px;
    max-height: 60px;
  }
}

/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .menu {
    font-size: 0.82rem;
  }

  .gallery-item {
    min-width: 210px;
    height: 150px;
  }
}