
/* FOOTER */
.footer {
  margin-top: 55px;
  background: linear-gradient(180deg, #04142d, #020817);
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: calc(100% - 30px);
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 0;
}

.footer-brand {
  margin-bottom: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.copyright {
  color: rgba(200, 220, 245, 0.62);
  font-size: 11px;
  text-align: center;
}

/* FLOATING LIVECHAT */
.floating-livechat {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 9999;
  width: calc(100% - 28px);
  max-width: 360px;
  transform: translateX(-50%);
}

.livechat-button {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 24px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    135deg,
    #061a40 0%,
    #075bc7 50%,
    #1597ff 100%
  );
  border: 1px solid rgba(103, 203, 255, 0.55);
  border-radius: 50px;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 119, 255, 0.18);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.livechat-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(0, 139, 255, 0.3);
}

.livechat-status {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: #6ee7ff;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(110, 231, 255, 0.12);
}

.livechat-status::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(110, 231, 255, 0.55);
  border-radius: 50%;
  animation: livechatPulse 1.8s infinite;
}

@keyframes livechatPulse {
  0% {
    opacity: 1;
    transform: scale(0.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.livechat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.livechat-small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.livechat-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* RESPONSIVE - TABLET */
@media (max-width: 768px) {
  .main-nav {
    gap: 24px;
  }

  .brand-name {
    font-size: 34px;
  }

  .content h1 {
    font-size: 27px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 600px) {
  body {
    padding-bottom: 90px;
  }

  /* HEADER */
  .nav-container {
    width: calc(100% - 20px);
  }

  .main-nav {
    min-height: 50px;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-link,
  .bahasa-button {
    min-height: 50px;
    font-size: 11px;
  }

  .bahasa-menu {
    width: 130px;
  }

  /* HERO */
  .hero {
    width: calc(100% - 24px);
  }

  .brand {
    padding: 30px 0 20px;
  }

  .brand-name {
    font-size: 29px;
  }

  .brand-tagline {
    font-size: 11px;
  }

  /* BUTTONS */
  .hero-actions {
    gap: 9px;
    margin-bottom: 12px;
  }

  .hero-button {
    min-height: 48px;
    border-radius: 9px;
    font-size: 13px;
  }

  /* BANNER */
  .banner-section {
    margin-bottom: 38px;
    padding: 4px;
    border-radius: 12px;
  }

  .banner-image {
    border-radius: 9px;
  }

  /* CONTENT */
  .content {
    width: calc(100% - 28px);
  }

  .content h1 {
    font-size: 24px;
  }

  /* LIVECHAT */
  .floating-livechat {
    bottom: 10px;
    width: calc(100% - 24px);
    max-width: none;
  }

  .livechat-button {
    min-height: 55px;
  }
}

/* RESPONSIVE - SMALL MOBILE */
@media (max-width: 420px) {
  .main-nav {
    gap: 6px;
  }

  .nav-link,
  .bahasa-button {
    font-size: 10px;
  }

  .brand-name {
    font-size: 27px;
  }

  .content h1 {
    font-size: 22px;
  }
}