/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.custom-footer {
    background-color: #e0f3ff; /* Biru muda */
    padding: 40px 20px 20px;
    font-family: 'roboto', sans-serif;
    color: #2c3e50;
    text-align: left;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  /* Kolom Kiri: Logo & Alamat */
  .footer-left {
    flex: 1 1 300px;
    min-width: 280px;
    text-align: left;
  }
  
  .footer-logo {
    width: 160px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  /* Kolom Kanan: Semua Link */
  .footer-links-wrapper {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-left: 100px; /* Geser ke kanan */
  }
  
  .footer-column {
    min-width: 180px;
    color: #333;
    text-align: left;
    
  }
  
  .footer-column .legal-info p {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  
  .footer-column .legal-info p strong {
    font-size: 18px;
    font-weight: bold;
    color: #1032AD; /* Warna biru sesuai permintaan */
    text-align: left;
  }
  
  .footer-column .legal-info i {
    margin-right: 8px;
    color: #000;

  }
  
  .footer-column p i.fa-map-marker-alt {
    color: #d93025; /* Warna merah untuk ikon map */
    margin-right: 8px;
    text-align: left;
  }
  
  .footer-column h4 {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1032AD;
    font-size: 16px;
    margin-left: 20px;
  }
  
  .footer-column ul, 
  .footer-column > a {
      padding-left: 20px; /* Sama rata, baik list maupun satuan link */
      display: block; /* Biar link Google Play tampil seperti list item */
      margin-top: 10px;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #1a73e8; /* Biru cerah */
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-column ul li i {
    font-size: 16px;
    color: #1a73e8;
  }
  
  .footer-column a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    
  }
  
  .footer-column a:hover {
    text-decoration: underline;
    color: #0c47a1; /* Biru lebih gelap saat hover */
  }
  
  .play-button {
    width: 140px;
    margin-top: 10px;
  }
  
  .footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    color: #333;
    font-size: 14px;
  }
  
  /*--------------------------------------------------------------
  # Social Media Links
  --------------------------------------------------------------*/
  .social-links {
    margin: 20px 0;
    display: flex;
    gap: 10px;
  }
  
  .social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #026f3d;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: background 0.3s;
  }
  
  .social-links a:hover {
    background: #038f52;
  }
  
  .sk-title {
    color: #026f3d; /* Hijau tua */
    font-size: 14px;
    font-weight: bold;
  }
  
  /*--------------------------------------------------------------
  # Responsive Footer
  --------------------------------------------------------------*/
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  
    .footer-links-wrapper {
      flex-direction: column;
      margin-left: 0px;
    }
  }
  
  /*--------------------------------------------------------------
  # Live Chat WhatsApp
  --------------------------------------------------------------*/
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .whatsapp-float {
    position: fixed !important;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: bounce 2s infinite;
  }
  
  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }

/*--------------------------------------------------------------
# Eksklusif
--------------------------------------------------------------*/
  
  .containers {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
  }

  .content {
    flex: 1;
  }

  .features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .features-image img {
    width: 260px; /* Atur ukuran sesuai kebutuhan */
    animation: float 4s ease-in-out infinite;
    margin-left: 50px;
  }

  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }