/* ================================
   COMPACT PREMIUM FOOTER
   ================================ */

   .site-footer {
    width: 100%;
    background: linear-gradient(135deg, #4f607d 0%, #111f39 100%);
    color: #e5e7eb;
    padding: 30px 0 0;
    position: relative;
  }
  
  .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
  }
  
  .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 7vw;
  }
  
  /* Clean Compact 2-Column Layout */
  .footer-content.footer-clean {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Footer Logo */
  .footer-logo-img {
    height: 52px;
    width: auto;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  
  /* About Text */
  .footer-about {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d1d5db;
    margin: 0;
  }
  
  /* Footer Heading */
  .footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    position: relative;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 2px;
  }
  
  /* ================================
     HORIZONTAL QUICK LINKS
     ================================ */
  
  .footer-links.horizontal-links {
    list-style: none;
    padding: 0;
    margin: 0;
  
    display: flex;
    flex-wrap: wrap;
    gap: 20px 35px;     /* row gap | column gap */
  }
  
  .horizontal-links li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .horizontal-links a {
    font-size: 0.88rem;
    color: #d1d5db;
    text-decoration: none;
    transition: 0.25s ease;
  }
  
  .horizontal-links a:hover {
    color: #f59e0b;
    transform: translateY(-2px);
  }
  
  /* ================================
     BOTTOM FOOTER
     ================================ */
  
  .footer-bottom {
    padding: 12px 0;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .copyright {
    margin: 0;
    font-size: 0.82rem;
    color: #9ca3af;
  }
  
  .copyright strong {
    color: #f59e0b;
    font-weight: 600;
  }
  
  /* ================================
     RESPONSIVE (Mobile)
     ================================ */
  
  @media (max-width: 768px) {
    .footer-content.footer-clean {
      grid-template-columns: 1fr;
      gap: 20px;
      text-align: center;
    }
  
    .footer-logo-img {
      margin: 0 auto 12px;
    }
  
    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .footer-links.horizontal-links {
      justify-content: center;
      gap: 14px 22px;
    }
  }
  