/* ============================================================
   Diskod Services - Custom Footer
   ============================================================ */

/* Hide default Kadence footer */
#colophon.site-footer {
  display: none !important;
}

/* --- Footer Main --- */
.diskod-footer {
  background: #1a202c;
  color: #cbd5e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}
.diskod-footer-main {
  padding: 60px 0 40px;
}
.diskod-footer-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 40px;
}

/* --- Brand column --- */
.diskod-footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(10);
}
.diskod-footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #a0aec0;
  margin-bottom: 20px;
}
.diskod-footer-social {
  display: flex;
  gap: 12px;
}
.diskod-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #cbd5e0;
  transition: all 0.3s ease;
}
.diskod-footer-social a:hover {
  background: #2b6cb0;
  color: #fff;
  transform: translateY(-2px);
}

/* --- Column titles --- */
.diskod-footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #2b6cb0;
  display: inline-block;
}
.diskod-footer-title-mt {
  margin-top: 24px;
}

/* --- Link lists --- */
.diskod-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diskod-footer-links li {
  margin-bottom: 8px;
}
.diskod-footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.5;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.diskod-footer-links a:hover {
  color: #63b3ed;
  padding-left: 4px;
}

/* --- Contact list --- */
.diskod-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diskod-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.diskod-footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #63b3ed;
}
.diskod-footer-contact a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.diskod-footer-contact a:hover {
  color: #63b3ed;
}
.diskod-footer-contact span {
  color: #a0aec0;
}

/* --- Newsletter --- */
.diskod-footer-newsletter-desc {
  font-size: 13px;
  color: #a0aec0;
  margin: 0 0 10px 0;
}
.diskod-footer-newsletter {
  display: flex;
  gap: 0;
}
.diskod-footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #4a5568;
  border-right: none;
  border-radius: 6px 0 0 6px;
  background: #2d3748;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}
.diskod-footer-newsletter input[type="email"]::placeholder {
  color: #718096;
}
.diskod-footer-newsletter input[type="email"]:focus {
  border-color: #2b6cb0;
}
.diskod-footer-newsletter button {
  padding: 10px 18px;
  background: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.diskod-footer-newsletter button:hover {
  background: #2c5282;
}

/* --- Bottom bar --- */
.diskod-footer-bottom {
  border-top: 1px solid #2d3748;
  padding: 20px 0;
  background: #171923;
}
.diskod-footer-bottom .diskod-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.diskod-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #718096;
}
.diskod-footer-legal {
  display: flex;
  gap: 20px;
}
.diskod-footer-legal a {
  color: #718096;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.diskod-footer-legal a:hover {
  color: #63b3ed;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .diskod-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .diskod-footer-main {
    padding: 40px 0 30px;
  }
  .diskod-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .diskod-footer-brand {
    text-align: center;
  }
  .diskod-footer-social {
    justify-content: center;
  }
  .diskod-footer-bottom .diskod-footer-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .diskod-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .diskod-footer-newsletter {
    max-width: 320px;
  }
}
