/* Responsive Breakpoints */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  h1 { font-size: 40px; line-height: 48px; }
  h2 { font-size: 30px; line-height: 38px; }
  
  .section-padding { padding: 60px 0; }
  
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  
  .header-cta { display: none; }
}

/* Base Mobile Menu Container (Hidden on Desktop by default) */
.mobile-nav-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  padding: 30px 20px;
  overflow-y: auto;
}

.mobile-nav-container.active {
  left: 0;
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
  h1 { font-size: 32px; line-height: 40px; }
  h2 { font-size: 26px; line-height: 34px; }
  h3 { font-size: 22px; line-height: 30px; }
  
  .section-padding { padding: 50px 0; }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
  
  .mobile-nav-link {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
    display: block;
    color: var(--text-dark);
    text-decoration: none;
  }
  
  .mobile-dropdown-menu {
    padding-left: 20px;
    display: none;
  }
  
  .mobile-dropdown-item {
    font-size: 16px;
    padding: 8px 0;
    display: block;
    color: var(--text-light);
    text-decoration: none;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
  }
  
  /* Footer */
  .main-footer { padding: 50px 0 0; }
  .footer-widget { margin-bottom: 30px; }
  
  /* Floating Buttons */
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .btn-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
