.footer-modern {
    background: linear-gradient(135deg, #1a1f2b, #220c3d);
    color: #dcdcdc;
    padding: 60px 40px 20px;
    font-family: 'Roboto', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-left {
    flex: 1 1 300px;
  }
  
  .footer-logo {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .footer-desc {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .footer-contact {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-contact a {
    color: #82d4ff;
    text-decoration: none;
  }
  
  .footer-right {
    display: flex;
    flex: 2 1 600px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1 1 150px;
    margin-bottom: 20px;
  }
  
  .footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column li {
    margin-bottom: 8px;
  }
  
  .footer-column a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
  }
  
  .footer-column a:hover {
    color: #ffffff;
  }
  
  .social-row {
    display: flex;
    gap: 12px;
  }
  
  .social-row a i {
    font-size: 20px;
    color: #9fa8b3;
    transition: color 0.3s;
  }
  
  .social-row a:hover i {
    color: #ffffff;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #aaa;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-right {
      flex-direction: column;
    }
  
    .footer-column {
      margin-bottom: 30px;
    }
  }
  