/* Footer container */
.footer-container {
    width: 100%;
    background-color: #f8f9fa;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
  }
  
  /* Main content layout */
  .footer-content .container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .container2 {
    text-align: center;
  }
  
  /* Brand logo */
  .brand-logo img.BrandLogo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
  }
  
  /* Navigation links */
  .nav-links-ft {
    margin-bottom: 15px;
  }
  
  .nav-justify-content-center {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;               /* bikin item sejajar horizontal */
    justify-content: center;     /* rata tengah */
    gap: 20px;                   /* jarak antar item */
    flex-wrap: wrap;             /* biar responsif */
  }
  
  .nav-justify-content-center .nav-item {
    display: inline-block;
  }
  
  .nav-justify-content-center .nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .nav-justify-content-center .nav-link:hover {
    color: #007bff;
  }
  
  /* Copyright section */
  .copyrights-mt-1 {
    font-size: 13px;
    color: #666;
  }
  
  .copyrights-mt-1 a {
    color: inherit;
    text-decoration: underline;
  }
  
  /* Social section */
  .social-section {
    text-align: center;
  }
  
  .social-section p {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
  }
  
  /* Social icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .social-icons a img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
  }
  
  .social-icons a:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  /* Back to top arrow (optional styling) */
  #ArrowToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  #ArrowToTop:hover {
    background-color: #0056b3;
  }
  
  /* Responsive tweaks */
  @media (max-width: 576px) {
    .nav-justify-content-center {
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }
  
    .brand-logo img.BrandLogo {
      max-width: 120px;
    }
  
    #ArrowToTop {
      right: 15px;
      bottom: 20px;
    }
  }
  