/* Footer Base Styles */
.main-footer {
    background: #111;
    color: #fff;
    padding: 3rem 1.5rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-section {
    flex: 1 1 250px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffae00;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #ffae00;
  }
  
  /* Highlights */
  .highlights h3 {
    font-size: 1.3rem;
    color: #ffae00;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .highlight-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .highlight-list li {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
  }
  
  .highlight-list i {
    color: #ffae00;
    font-size: 1.1rem;
  }
  
  /* Contact Info */
  .contact-details p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-details i {
    color: #ffae00;
  }
  
  /* Bottom Bar */
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  
  /* Scroll to Top Button */
  #scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffae00;
    color: #fff;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    z-index: 999;
    transition: background 0.3s ease;
  }
  
  #scrollToTop:hover {
    background: #cc8c00;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: stretch;
      gap: 2rem;
    }
  
    .footer-section {
      width: 100%;
    }
  
    .footer-bottom {
      font-size: 0.85rem;
      text-align: center;
    }
  }