/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Laptop & Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  
  .hamburger {
    display: block;
  }

  /* Animated Hamburger Transformation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--elevation-2);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .hero {
    min-height: 70vh;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

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

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

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

  .cta-title {
    font-size: 1.75rem;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .brand-title {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

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

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    padding: 1rem 0.5rem;
  }

  .btn {
    width: 100%;
  }

  .legal-content,
  .contact-info-card,
  .contact-form {
    padding: 1.5rem;
  }
}