/* =========================================
   RESPONSIVE STYLES
   ========================================= */

@media (max-width: 1024px) {
  /* Tablet Styles */
  :root {
    --section-padding: 80px 0;
  }
  
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.8rem; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  :root {
    --section-padding: 60px 0;
  }

  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  /* Navbar */
  .navbar .brand-logo {
    height: 100px; /* Scale down for mobile to maintain usability */
  }

  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 18px;
    right: 20px;
    transform: translateX(calc(100% + 32px));
    width: 80%;
    max-width: 400px;
    height: auto;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 32px;
    padding: 88px 28px 32px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: -10px 20px 40px rgba(45,45,45,0.12);
    z-index: 1000;
  }
  
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav-link {
    font-size: 1.25rem;
    min-height: 48px;
    padding: 12px 16px;
    width: 100%;
    justify-content: center;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-item:last-child {
    margin-top: 4px;
  }

  .nav-cta {
    min-height: 52px;
    width: 100%;
    justify-content: center;
  }
  
  /* Utilities */
  .container {
    padding: 0 20px;
  }

  .btn {
    min-height: 50px;
    padding: 14px 28px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-desc {
    margin: 0 auto 24px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info li {
    justify-content: center;
  }
}
