/* === STYLES FOR SITE FOOTER === */

.site-footer {
    background: #1a1a1a;
    color: #a0a0a0;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* --- Footer Top --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 102px; /* bebas, bisa 40px / 60px */
  width: auto;
  display: block;
}


.footer-cta p {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(45deg, #378ee1, #5a67d8);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(90, 103, 216, 0.4);
}

/* --- Footer Middle (Links & Social) --- */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-links h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    display: inline-block;
    color: #a0a0a0;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}
.footer-links li a:hover {
    color: #fff;
}

.footer-social h4 { 
    font-family: 'Poppins', sans-serif; 
    color: #fff; 
    font-size: 1.1rem; 
    font-weight: 600; 
}
.footer-social a {
    display: inline-block;
    margin-right: 15px;
    color: #a0a0a0;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: #fff;
}
.footer-social svg {
    width: 28px;
    height: 28px;
}

/* --- Footer Bottom --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
}

.footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: #fff;
}

/* --- Decorative Shapes --- */
.shape {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    background: #fff;
}
.shape-1 { width: 150px; height: 150px; border-radius: 50%; top: 10%; left: 5%; animation: float 10s ease-in-out infinite; }
.shape-2 { width: 50px; height: 50px; border-radius: 10px; top: 75%; left: 15%; animation: float 12s ease-in-out infinite reverse; }
.shape-3 { width: 100px; height: 100px; transform: rotate(45deg); bottom: 5%; right: 10%; animation: float 8s ease-in-out infinite; }
.shape-4 { width: 200px; height: 200px; border-radius: 30%; top: 20%; right: -50px; animation: float 15s ease-in-out infinite reverse; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; text-align: center; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal a { margin: 0 10px; }
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 102px;
  }
}
