/* Footer Styles */
footer {
    padding: 60px 0 30px;
    background: var(--light-color);
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-info, .footer-nav, .footer-social {
    margin-bottom: 30px;
    flex: 1 1 250px;
    min-width: 0;
  }
  
  footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent-color);
  }
  
  .footer-nav ul li {
    margin-bottom: 10px;
  }

  .footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 2px;
  }
  
  .social-icons {
    display: flex;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    margin-right: 15px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: var(--action-color);
    color: #fff;
    border-color: var(--action-color);
  }

  .footer-info a {
    overflow-wrap: anywhere;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    font-size: 0.9rem;
  }
  
  .newsletter-form button {
    width: 40px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background: var(--accent-color);
  }
  
  .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color);
    font-size: 0.9rem;
  }
