/* ============================================================
   legal.css – Syarat, Privasi, Disclaimer pages
   ============================================================ */

.btn-back-home {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--trans);
}
.btn-back-home:hover { color: var(--white); border-color: var(--orange); background: rgba(240,90,26,0.15); }

.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
}
.legal-hero-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(240,90,26,0.15); border: 2px solid rgba(240,90,26,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem; color: var(--orange);
}
.legal-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; margin-bottom: 8px;
}
.legal-hero p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

.legal-main { padding: 60px 0 80px; background: var(--grey-l); }
.legal-container { max-width: 820px; }

.legal-alert {
  background: rgba(240,90,26,0.08); border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px; margin-bottom: 40px;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem; color: var(--navy); line-height: 1.6;
}
.legal-alert.warning { background: rgba(255,193,7,0.1); border-color: #ffc107; }
.legal-alert i { color: var(--orange); margin-top: 2px; flex-shrink: 0; font-size: 1rem; }
.legal-alert.warning i { color: #d39e00; }

.legal-section {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 36px; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
}
.legal-section h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.legal-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}
.legal-section h3 {
  font-size: 1rem; font-weight: 700; color: var(--steel);
  margin: 18px 0 10px;
}
.legal-section p {
  color: var(--grey); line-height: 1.75; margin-bottom: 14px; font-size: 0.95rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none; margin: 0 0 14px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.legal-section ul li {
  color: var(--grey); font-size: 0.95rem; line-height: 1.65;
  padding-left: 20px; position: relative;
}
.legal-section ul li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--orange); font-weight: 800; font-size: 1rem;
}
.legal-section a { color: var(--orange); text-decoration: underline; }
.legal-section a:hover { color: var(--orange-d); }

.legal-contact { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.legal-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white) !important;
  font-weight: 700; font-size: 0.9rem;
  padding: 12px 22px; border-radius: 8px;
  text-decoration: none !important;
  transition: background var(--trans), transform var(--trans);
}
.legal-contact-btn:hover { background: #1aad50 !important; transform: translateY(-2px); }
.legal-contact-btn.outline {
  background: transparent !important; color: var(--navy) !important;
  border: 2px solid var(--navy);
}
.legal-contact-btn.outline:hover { background: var(--navy) !important; color: var(--white) !important; }

.legal-footer {
  background: var(--navy); padding: 28px 0; text-align: center;
}
.legal-footer p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 12px; }
.legal-footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.legal-footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color var(--trans); }
.legal-footer-links a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .legal-section { padding: 24px 20px; }
  .legal-hero { padding: 100px 0 48px; }
}
