/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-6);
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    padding: var(--space-3) var(--space-4);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  section {
    padding: var(--space-12) 0;
  }

  .hero {
    padding: var(--space-16) var(--space-4) var(--space-8);
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-6);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tech-stack {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card,
  .portfolio-item {
    margin: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Print */
@media print {
  .navbar,
  .footer,
  .hero-scroll,
  .nav-actions {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}

