/* ============================================
   MBTech Digital — Legal Pages Styles
   File: css/legal.css
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-navy) 55%, #1e3a8a 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 42vh;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--orange); }

.breadcrumb i.fa-chevron-right { font-size: 0.65rem; }

.page-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.legal-content {
  padding: 5rem 0 6rem;
  background: var(--bg-white);
}

.legal-content__inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1rem;
  margin-bottom: 2.5rem;
}

.legal-updated i { color: var(--orange); }

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-navy);
  margin-bottom: 0.9rem;
}

.legal-block p,
.legal-block li {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.85;
}

.legal-block ul,
.legal-block ol {
  padding-left: 1.4rem;
  margin-top: 0.75rem;
}

.legal-block li { margin-bottom: 0.55rem; }

.legal-block a {
  color: var(--orange);
  font-weight: 500;
}

.legal-block a:hover { text-decoration: underline; }

.legal-contact-box {
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.legal-contact-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-navy);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 4rem; min-height: auto; }
  .legal-content { padding: 3.5rem 0 4.5rem; }
}
