.district-search { background: var(--navy); color: #fff; }
.district-search-box { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.district-search h2 { margin: 0 0 16px; }
.district-search p { color: #c8d5dd; font-size: 13px; line-height: 1.7; max-width: 520px; }
.district-search-card { background: #173b5b; padding: 28px; border: 1px solid #44627c; }
.district-search-status { display: flex; align-items: center; gap: 12px; color: var(--gold); font: 600 18px Oswald, sans-serif; text-transform: uppercase; }
.district-search-spinner { width: 18px; height: 18px; border: 2px solid rgba(223,178,97,.3); border-top-color: var(--gold); border-radius: 50%; animation: districtSpin .8s linear infinite; }
.district-search-steps { display: grid; gap: 10px; margin: 22px 0 0; }
.district-search-step { display: flex; gap: 10px; align-items: center; color: #8fa3b2; font-size: 11px; }
.district-search-step::before { content: ''; width: 7px; height: 7px; border: 1px solid #66839b; border-radius: 50%; }
.district-search-step.is-done { color: #d5e1e9; }
.district-search-step.is-done::before { background: var(--gold); border-color: var(--gold); }
.district-search-result { display: none; margin-top: 22px; padding-top: 18px; border-top: 1px solid #44627c; }
.district-search-result.is-visible { display: block; animation: districtReveal .45s ease both; }
.district-search-result strong { display: block; color: var(--gold); font: 600 22px Oswald, sans-serif; text-transform: uppercase; }
.district-search-result span { display: block; margin: 6px 0 18px; color: #d5e1e9; font-size: 11px; }
.district-search-retry { margin-left: 12px; border: 0; background: transparent; color: var(--gold); font: 700 10px Manrope, sans-serif; text-transform: uppercase; cursor: pointer; }
@keyframes districtSpin { to { transform: rotate(360deg); } }
@keyframes districtReveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (max-width: 760px) { .district-search-box { grid-template-columns: 1fr; gap: 28px; } .district-search-card { padding: 22px; } }
@media (prefers-reduced-motion: reduce) { .district-search-spinner { animation: none; } .district-search-result.is-visible { animation: none; } }
