/* Mobile responsiveness enhancements */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-content {
    padding: 30px 0;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .product-category {
    margin-bottom: 30px;
  }
  
  .calculator-form {
    padding: 15px;
  }
  
  .door-option {
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-list li {
    margin: 5px 0;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
  
  /* Improved touch targets for mobile */
  button, 
  .btn,
  .nav-list li a,
  .door-option,
  .form-control {
    min-height: 44px;
    padding: 10px 15px;
  }
  
  /* Better spacing for form elements on mobile */
  .form-group {
    margin-bottom: 20px;
  }
  
  /* Ensure images are responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .calculator-step h3 {
    font-size: 18px;
  }
  
  .special-discount .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badge {
    margin-bottom: 15px;
  }
}
