/* ==========================================================================
   FOOTER COMPONENT STYLES (Figma Revamp Implementation)
   ========================================================================== */

.site-footer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #F8FAFC;
  color: #333333;
  padding: 64px 80px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

/* Frame 1000011689: Top Section */
.footer-top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  width: 100%;
  min-height: 100px;
}

/* Frame 36: Left Logo Column (Padding Hapus) */
.footer-logo-col {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  width: 199px;
  height: 100px;
  flex-shrink: 0;
}

.footer-logo-col img {
  width: 199px;
  height: 100px;
  object-fit: contain;
}

/* Frame 1000011679: Right Contact Column (Width Max Content) */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: max-content;
  max-width: 100%;
}

.footer-contact-title {
  width: max-content;
  height: 26px;
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #333333;
  margin: 0;
}

/* Frame 1000011762: Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: max-content;
  max-width: 100%;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
  height: 24px;
  width: max-content;
  max-width: 100%;
}

.footer-contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-contact-item a {
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  color: #333333;
  text-decoration: none;
  width: max-content;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: #B98227;
}

.footer-email-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.footer-email-group a {
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-email-group a:hover {
  color: #B98227;
}

.footer-email-group .email-separator {
  color: #333333;
  font-size: 14px;
}


/* Vector 10: Divider Line */
.footer-divider {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid #BBBBBB;
}

/* Bottom Copyright */
.footer-copyright {
  width: 100%;
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333333;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .site-footer {
    padding: 48px 40px 24px 40px;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 40px 24px 24px 24px;
  }
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-logo-col {
    padding: 0;
    width: auto;
    height: auto;
  }
  .footer-logo-col img {
    width: 160px;
    height: auto;
  }
  .footer-contact-col,
  .footer-contact-list,
  .footer-contact-item,
  .footer-contact-item a {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 32px 18px 20px 18px;
  }
  .footer-logo-col img {
    width: 140px;
  }
  .footer-contact-item {
    height: auto;
    min-height: 24px;
  }
  .footer-contact-item a {
    font-size: 13px;
    line-height: 19px;
  }
}
