
/* -------- Footer Start--------------*/
footer {
    background: url('/img/footer_bg.png') no-repeat center center/cover;
    color: white;
    padding: 2.5rem 1.25rem;
    box-shadow: 0px 1px 14px 0px #FF5722;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 75rem;
    margin: auto;
    text-align: left
  }
  
  .footer-box {
    width: 23%;
  }
  
  .footer-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: black;
  }
  
  .footer-box p,
  .footer-box ul {
    font-size: 1rem;
  }
  
  .footer-box ul {
    list-style: none;
  }
  
  .footer-box ul li {
    margin: 5px 0;
  }
  
  .footer-box ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer-box ul li a:hover {
    text-decoration: underline;
    color: black;
    transition: 0.5s;
    text-decoration: none;
  
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 35px;
    color: white;
    transition: 0.5s;
    
  }
  
  .social-icons a:hover {
    color: orangered;
  }
  
  form input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
  }
  
  form button {
    width: 100%;
    padding: 8px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background: darkred;
    transition: 0.5s;
  }
  /* 🌟 RESPONSIVE FOOTER */
  
  /* Tablet & layar sedang (max 1024px) */
  @media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
  
    .footer-box {
        width: 45%; /* 2 kolom saat layar lebih kecil */
        margin-bottom: 20px;
    }
  
    .footer-box h2 {
        font-size: 1.5rem;
    }
  
    .footer-box p,
    .footer-box ul {
        font-size: 0.95rem;
    }
  
    .social-icons a {
        font-size: 30px;
    }
  
    form input,
    form button {
        padding: 10px;
        font-size: 1rem;
    }
  }
  
  /* HP & layar kecil (max 768px) */
  @media (max-width: 768px) {
    .footer-box {
        width: 100%; /* 1 kolom penuh */
        text-align: center;
    }
  
    .footer-box h2 {
        font-size: 1.4rem;
    }
  
    .footer-box p,
    .footer-box ul {
        font-size: 0.9rem;
    }
  
    .social-icons a {
        font-size: 28px;
    }
  }
  
  /* HP sangat kecil (max 480px) */
  @media (max-width: 480px) {
    footer {
        padding: 30px 15px;
    }
  
    .footer-box {
        width: 100%;
    }
  
    .footer-box h2 {
        font-size: 1.3rem;
    }
  
    .footer-box p,
    .footer-box ul {
        font-size: 0.85rem;
    }
  
    .social-icons a {
        font-size: 25px;
    }
  
    form input,
    form button {
        padding: 8px;
        font-size: 0.9rem;
    }
  }
  
  /* -------- Footer End--------------*/