/* ==========================================================================
   RIQSIY CV - Responsive Media Queries
   ========================================================================== */

/* Large Desktops & Tablets Landscape */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-metrics {
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 2.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    padding: 5rem 2rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    box-shadow: none;
    margin-top: 0.5rem;
  }

  .nav-actions {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .estimator-card {
    padding: 1.75rem 1.25rem;
  }

  .estimator-options-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .wa-widget {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .wa-card {
    width: 290px;
    right: 0;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-buttons .btn {
    width: 100%;
  }

  .estimator-summary-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}
