:root {
  --navy: #10213f;
  --blue: #173e72;
  --gold: #c79a42;
  --soft: #f5f7fb;
  --text: #1f2937;
  --muted: #667085;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(16, 33, 63, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(199,154,66,.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fd 100%);
  overflow: hidden;
}
.navbar {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--navy); color: var(--gold); box-shadow: var(--shadow);
}
.brand-text { font-size: 1rem; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--navy); font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; width: 0; height: 2px; left: 0; bottom: -6px; background: var(--gold); transition: .25s;
}
.nav-links a:hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: var(--navy); color: var(--white); padding: 9px 12px; border-radius: 10px; font-size: 1.2rem; }

.hero {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0 90px;
}
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; font-size: .78rem; margin-bottom: 12px; }
h1 { color: var(--navy); font-size: clamp(2.6rem, 6vw, 5rem); line-height: .98; margin-bottom: 22px; }
h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin-bottom: 16px; }
h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 10px; }
.hero-subtitle { font-size: 1.25rem; color: var(--muted); max-width: 670px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  border-radius: 999px; padding: 14px 24px; font-weight: 800; transition: .25s ease;
}
.btn-primary { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-3px); background: var(--blue); }
.btn-outline { border: 2px solid rgba(16,33,63,.16); color: var(--navy); background: var(--white); }
.btn-outline:hover { border-color: var(--gold); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }

.hero-card {
  min-height: 520px;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before, .hero-card::after {
  content: ""; position: absolute; border-radius: 999px; background: rgba(255,255,255,.1);
}
.hero-card::before { width: 170px; height: 170px; top: 24px; right: 20px; }
.hero-card::after { width: 110px; height: 110px; bottom: 34px; left: 28px; }
.photo-placeholder {
  height: 100%; min-height: 472px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  display: grid; place-items: center; text-align: center;
  color: var(--white); position: relative; z-index: 1;
  background: rgba(255,255,255,.08);
}
.justice-icon { font-size: 6rem; color: var(--gold); margin-bottom: 10px; }
.photo-placeholder p { font-size: 1.7rem; font-weight: 800; }
.photo-placeholder small { color: rgba(255,255,255,.75); }

.section-pad { width: min(1180px, 92%); margin: 0 auto; padding: 90px 0; }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 45px; }
.section-heading p { color: var(--muted); }
.info-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  background: var(--white); border: 1px solid #e8edf5; box-shadow: var(--shadow); border-radius: var(--radius); padding: 22px;
}
.info-strip div { padding: 20px; background: var(--soft); border-radius: 18px; }
.info-strip strong { display: block; color: var(--navy); margin-bottom: 4px; }
.info-strip span { color: var(--muted); }

.areas { background: var(--white); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid #e6ebf3; border-radius: var(--radius); padding: 28px;
  box-shadow: 0 12px 30px rgba(16,33,63,.08); transition: .25s ease; min-height: 270px;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(199,154,66,.55); }
.card-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: #fff5df; color: var(--gold); font-weight: 900; margin-bottom: 18px; }
.service-card p { color: var(--muted); margin-bottom: 18px; }
.service-card a { margin-top: auto; color: var(--blue); font-weight: 800; }

.attention { background: linear-gradient(180deg, #fff, #f7f9fd); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.split p { color: var(--muted); }
.feature-list { display: grid; gap: 14px; }
.feature-item {
  display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid #e7ebf2;
  border-radius: 18px; padding: 18px; font-weight: 700; color: var(--navy); box-shadow: 0 10px 26px rgba(16,33,63,.07);
}
.feature-item span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--gold); }

.banner-call {
  width: min(1180px, 92%); margin: 0 auto; border-radius: 32px; padding: 42px;
  background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white);
  display: flex; justify-content: space-between; gap: 26px; align-items: center; box-shadow: var(--shadow);
}
.banner-call h2 { color: var(--white); }
.banner-call p { color: rgba(255,255,255,.78); }

.location-card {
  max-width: 680px; margin: 0 auto; display: flex; gap: 18px; align-items: center;
  background: var(--soft); border: 1px solid #e4eaf2; border-radius: var(--radius); padding: 30px;
}
.pin { font-size: 2rem; }
.location-card strong { color: var(--navy); font-size: 1.2rem; }
.location-card p { color: var(--muted); }

.contact-card {
  background: var(--white); border: 1px solid #e7ebf2; border-radius: 32px; box-shadow: var(--shadow);
  padding: 42px; display: flex; justify-content: space-between; gap: 26px; align-items: center;
}
.contact-card p { color: var(--muted); margin: 8px 0; }
.contact-card strong { color: var(--navy); }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 10;
  background: #1f9d55; color: var(--white); font-weight: 900; padding: 14px 18px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(31,157,85,.35);
}
.footer { text-align: center; padding: 34px 18px; color: var(--muted); background: #f7f9fd; }
.footer p:first-child { color: var(--navy); font-weight: 800; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 80px; left: 4%; right: 4%; display: none; flex-direction: column;
    background: var(--white); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); z-index: 20;
  }
  .nav-links.active { display: flex; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero-card { min-height: 360px; }
  .photo-placeholder { min-height: 320px; }
  .cards-grid, .info-strip { grid-template-columns: repeat(2, 1fr); }
  .banner-call, .contact-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .brand-text { max-width: 190px; line-height: 1.1; }
  .cards-grid, .info-strip { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .section-pad { padding: 64px 0; }
  .banner-call, .contact-card { padding: 28px; }
  .btn { width: 100%; }
  .whatsapp-float { left: 18px; text-align: center; }
}
