:root {
    --navy: #101a35;
    --navy-2: #152449;
    --blue: #1d4f9f;
    --blue-2: #2366c5;
    --gold: #f2bd2d;
    --green: #a7bd00;
    --red: #b91f2d;
    --ink: #182238;
    --muted: #67738a;
    --line: #e5eaf2;
    --soft: #f4f7fb;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(18, 33, 66, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.nav-check,
.quick-check {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 34px rgba(16, 26, 53, .08);
    backdrop-filter: blur(14px);
}

.top-strip {
    color: rgba(255, 255, 255, .86);
    background: var(--navy);
    font-size: 13px;
}

.top-strip-inner,
.top-strip-left,
.top-links,
.header-bar,
.header-right,
.main-nav,
.hero-actions,
.notice-inner,
.section-head,
.footer-grid,
.socials {
    display: flex;
    align-items: center;
}

.top-strip-inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 20px;
}

.top-strip-left,
.top-links {
    gap: 18px;
    flex-wrap: wrap;
}

.top-links a {
    font-weight: 700;
}

.top-links a:hover,
.main-nav a:hover {
    color: var(--gold);
}

.header-bar {
    min-height: 86px;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand img {
    width: 70px;
    flex: 0 0 auto;
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.header-right {
    gap: 14px;
    order: 4;
}

.header-service {
    padding-right: 16px;
    text-align: right;
    border-right: 1px solid var(--line);
}

.header-service span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.header-service strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.1;
}

.header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    color: #111827;
    background: var(--gold);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}

.main-nav {
    flex: 1;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
}

.main-nav a {
    position: relative;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: var(--navy);
    border-radius: 8px;
    transition: .2s ease;
    white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--blue);
    background: #f2f6fd;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold);
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-search {
    width: 184px;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.header-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.header-search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 11px;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
}

.header-search input::placeholder {
    color: var(--muted);
}

.header-search button {
    width: 42px;
    height: 100%;
    color: #111827;
    background: var(--gold);
    border: 0;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    width: 19px;
    height: 2px;
    background: var(--navy);
}

.side-actions {
    position: fixed;
    top: 50%;
    right: 14px;
    z-index: 40;
    display: grid;
    gap: 9px;
    transform: translateY(-50%);
}

.side-actions a {
    width: 78px;
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 8px 6px;
    text-align: center;
    color: var(--white);
    background: rgba(16, 26, 53, .88);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    transition: .22s ease;
}

.side-actions span {
    font-size: 23px;
    line-height: 1;
}

.side-actions strong {
    font-size: 10px;
    line-height: 1.1;
}

.side-actions a:hover,
.side-actions .current {
    color: var(--blue);
    background: var(--white);
    transform: translateX(-5px);
}

.side-actions .current {
    outline: 3px solid var(--green);
}

.quick-button {
    display: none;
}

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: #101a35;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -24px;
    background: linear-gradient(135deg, #101a35 0%, #1f3766 48%, #8291a9 100%);
}

.hero:not(.hero-no-image)::before {
    background:
        linear-gradient(110deg, rgba(16, 26, 53, .72) 0%, rgba(16, 26, 53, .48) 44%, rgba(16, 26, 53, .22) 100%),
        var(--hero-image) center center / cover no-repeat;
    filter: blur(18px) saturate(1.14);
    transform: scale(1.04);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 26, 53, .52) 0%, rgba(16, 26, 53, .24) 42%, rgba(16, 26, 53, .12) 100%),
        radial-gradient(circle at 78% 45%, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 34%);
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    padding: 0 70px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(.72) contrast(1.03);
}

.hero-shade {
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(0deg, rgba(16, 26, 53, .65), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: block;
    padding: 118px 0 52px;
}

.hero-text {
    max-width: 770px;
}

.kicker,
.section-head span,
.panel-title span,
.contact-grid span {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 12px 0 0;
    max-width: 850px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .97;
    letter-spacing: 0;
}

.hero p {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 19px;
}

.hero-actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 900;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #111827;
    background: var(--gold);
}

.btn-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .4);
}

.btn-dark {
    color: var(--white);
    background: var(--navy);
}

.notice-bar {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    color: var(--white);
    background: linear-gradient(90deg, var(--blue) 0%, #174487 100%);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 18px 36px rgba(16, 26, 53, .13);
}

.notice-inner {
    min-height: 72px;
    gap: 16px;
    overflow: hidden;
}

.notice-label {
    flex: 0 0 auto;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, .22);
}

.notice-label span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 8px;
    color: #111827;
    background: var(--gold);
    font-size: 14px;
    font-weight: 900;
}

.notice-window {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.notice-window::before,
.notice-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 42px;
    pointer-events: none;
}

.notice-window::before {
    left: 0;
    background: linear-gradient(90deg, var(--blue), rgba(29, 79, 159, 0));
}

.notice-window::after {
    right: 0;
    background: linear-gradient(270deg, #174487, rgba(23, 68, 135, 0));
}

.notice-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: noticeTicker 32s linear infinite;
}

.notice-window:hover .notice-track {
    animation-play-state: paused;
}

.notice-single .notice-track {
    width: 100%;
    animation: none;
}

.notice-item {
    min-width: clamp(280px, 34vw, 520px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    transition: .2s ease;
}

.notice-single .notice-item {
    width: 100%;
    min-width: 0;
}

.notice-item:hover {
    background: rgba(255, 255, 255, .16);
}

.notice-item span {
    min-width: 0;
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-item small,
.notice-all {
    font-weight: 900;
    white-space: nowrap;
}

.notice-item small {
    color: var(--gold);
}

.notice-all {
    flex: 0 0 auto;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, .22);
}

@keyframes noticeTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .notice-track {
        animation: none;
    }
}

.section {
    padding: 72px 0;
}

.page-hero-section {
    padding: 92px 0 28px;
    background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.page-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.page-hero span {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
    font-size: 13px;
    font-weight: 900;
}

.breadcrumb a {
    color: var(--blue);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin-right: 8px;
    color: var(--muted);
}

.services-section {
    background: var(--soft);
}

.section-head {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-head h2 {
    flex: 1;
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.section-head a {
    color: var(--blue);
    font-weight: 900;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-grid a,
.lead-news,
.news-list a,
.panel,
.project-grid article,
.pharmacy-panel,
.pharmacy-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-grid a {
    min-height: 180px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px;
    transition: .2s ease;
}

.service-grid a:hover {
    color: var(--white);
    background: var(--blue);
    transform: translateY(-4px);
}

.service-grid span {
    color: var(--gold);
    font-size: 34px;
    line-height: 1;
}

.service-grid strong {
    font-size: 19px;
}

.service-grid small {
    color: inherit;
    opacity: .72;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(340px, .62fr);
    gap: 22px;
}

.lead-news {
    overflow: hidden;
}

.lead-news img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center;
    background: var(--soft);
}

.news-detail-card > img,
.home-news-card > img {
    height: 430px;
    object-fit: contain;
    background: #f6f8fc;
}

.lead-news-content {
    padding: 26px;
}

time,
small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.lead-news h3 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.16;
}

.lead-news p {
    margin: 0 0 18px;
    color: var(--muted);
}

.lead-news a {
    color: var(--blue);
    font-weight: 900;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-list a {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    box-shadow: none;
}

.news-list img {
    width: 130px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--soft);
}

.news-list strong {
    display: block;
    margin-top: 5px;
    color: var(--navy);
    line-height: 1.25;
}

.civic-section {
    background: var(--soft);
}

.civic-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 22px;
}

.panel {
    padding: 24px;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.panel-title span {
    color: var(--blue);
}

.panel-title a {
    color: var(--blue);
    font-weight: 900;
}

.announcements,
.agenda-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.announcements > a,
.agenda-card > a {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.announcements > a:last-child,
.agenda-card > a:last-child {
    border-bottom: 0;
}

.mayor-card {
    text-align: center;
}

.mayor-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
}

.mayor-card h3 {
    margin: 16px 0 4px;
    color: var(--navy);
    font-size: 23px;
}

.mayor-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-grid article {
    overflow: hidden;
}

.project-grid img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    background: var(--soft);
}

.haber-list-section .project-grid img,
.home-news-section .news-list img {
    object-fit: contain;
    background: #f6f8fc;
}

.project-grid div {
    padding: 20px;
}

.project-grid span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff4ce;
    font-size: 12px;
    font-weight: 900;
}

.project-grid h3 {
    margin: 12px 0 8px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.2;
}

.project-grid p {
    margin: 0;
    color: var(--muted);
}

.announcement-page-section {
    padding-top: 34px;
}

.announcement-list {
    display: grid;
    gap: 16px;
}

.announcement-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.announcement-date {
    min-height: 92px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
    text-align: center;
}

.announcement-date strong {
    font-size: 34px;
    line-height: 1;
}

.announcement-date span {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.announcement-content {
    min-width: 0;
}

.announcement-content h2 {
    margin: 0;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.2;
}

.announcement-content p {
    margin: 10px 0 0;
    color: var(--muted);
}

.announcement-content small {
    display: inline-flex;
    margin-top: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff4ce;
    font-weight: 900;
}

.announcement-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.announcement-empty {
    padding: 34px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: var(--soft);
    text-align: center;
}

.announcement-empty h2 {
    margin: 0 0 8px;
    color: var(--navy);
}

.announcement-empty p {
    margin: 0;
    color: var(--muted);
}

.document-page-section {
    padding-top: 34px;
}

.document-list {
    display: grid;
    gap: 14px;
}

.document-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.document-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #f2f6fd;
    border-radius: 8px;
}

.document-icon span {
    font-size: 34px;
    line-height: 1;
}

.document-content {
    min-width: 0;
}

.document-content h2 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.2;
}

.document-content p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.document-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.document-actions span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.report-page-section {
    padding-top: 34px;
}

.report-list {
    display: grid;
    gap: 14px;
}

.report-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.report-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
}

.report-icon span {
    font-size: 30px;
    line-height: 1;
}

.report-content {
    min-width: 0;
}

.report-content small {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff4ce;
    font-size: 12px;
    font-weight: 900;
}

.report-content h2 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.2;
}

.report-content p {
    margin: 8px 0 0;
    color: var(--muted);
}

.report-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.report-actions span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.legislation-page-section {
    padding-top: 34px;
}

.legislation-list {
    display: grid;
    gap: 16px;
}

.legislation-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.legislation-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
}

.legislation-icon span {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.legislation-content {
    min-width: 0;
}

.legislation-content small {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff4ce;
    font-size: 12px;
    font-weight: 900;
}

.legislation-content h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.18;
}

.contact-page-section {
    padding-top: 34px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 22px;
    align-items: start;
}

.contact-info-layout {
    max-width: 960px;
    margin: 0 auto;
}

.contact-form-card,
.contact-info-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-card-head {
    margin-bottom: 20px;
}

.contact-card-head span {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff4ce;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.15;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font: inherit;
    outline: 0;
    transition: .18s ease;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 79, 159, .12);
}

.recaptcha-wrap {
    min-height: 78px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-list-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-info-list-large > div:first-child {
    grid-column: 1 / -1;
}

.contact-info-list > div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f6f8fc;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-info-list p,
.contact-info-list a,
.contact-info-list span {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.contact-info-list a:hover {
    color: var(--blue);
}

.tariff-page-section {
    padding-top: 34px;
}

.tariff-grid {
    display: grid;
    gap: 16px;
}

.tariff-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.tariff-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: #111827;
    background: var(--gold);
    border-radius: 8px;
}

.tariff-icon span {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.tariff-content {
    min-width: 0;
}

.tariff-content h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.18;
}

.gallery-page-section {
    padding-top: 34px;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.gallery-filter a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
    font-size: 14px;
    font-weight: 900;
}

.gallery-filter a.active,
.gallery-filter a:hover {
    color: #111827;
    background: var(--gold);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f6f8fc;
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform .25s ease;
}

.gallery-card span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 28px);
    padding: 7px 11px;
    overflow: hidden;
    border-radius: 8px;
    color: var(--white);
    background: rgba(16, 26, 53, .86);
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.corporate-page-section {
    padding-top: 34px;
    background: var(--white);
}

.corporate-overview {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: stretch;
}

.corporate-media,
.corporate-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.corporate-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f6f8fc;
}

.corporate-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
}

.corporate-card {
    padding: 30px;
}

.corporate-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff4ce;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.corporate-card h2,
.corporate-card h3 {
    margin: 0 0 14px;
    color: var(--navy);
    line-height: 1.12;
}

.corporate-card h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.corporate-card h3 {
    font-size: 26px;
}

.corporate-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.rich-text {
    color: var(--muted);
    font-size: 16px;
}

.rich-text p {
    margin: 0 0 14px;
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.rich-text ul,
.rich-text ol {
    margin: 12px 0 0;
    padding-left: 20px;
}

.rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.rich-text table {
    width: 100%;
    margin-top: 12px;
    border-collapse: collapse;
    color: var(--ink);
    font-size: 15px;
}

.rich-text th,
.rich-text td {
    padding: 10px 12px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.rich-text th {
    color: var(--navy);
    background: #f2f6fd;
    font-weight: 900;
}

.contact-strip {
    padding: 48px 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--navy), var(--blue));
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
    align-items: center;
}

.contact-grid h2 {
    margin: 6px 0;
    font-size: 32px;
}

.contact-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.contact-grid > a {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    font-weight: 900;
}

.pharmacy-section {
    background: var(--soft);
}

.pharmacy-panel {
    padding: 26px;
}

.compact {
    margin-bottom: 18px;
}

.pharmacy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pharmacy-grid article {
    padding: 20px;
    box-shadow: none;
    border-left: 5px solid var(--blue);
}

.pharmacy-grid h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.pharmacy-grid p {
    margin: 0 0 14px;
    color: var(--muted);
}

.pharmacy-grid a {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 8px;
    color: #111827;
    background: var(--gold);
    font-weight: 900;
}

.site-footer {
    color: rgba(255, 255, 255, .8);
    background: var(--navy);
    border-top: 4px solid var(--gold);
}

.footer-grid {
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    padding: 46px 0 30px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    width: 148px;
    max-height: 148px;
    margin-bottom: 18px;
    object-fit: contain;
    filter: none;
}

.footer-brand p,
.footer-contact span {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.site-footer nav,
.footer-contact {
    display: grid;
    gap: 9px;
}

.site-footer strong {
    color: var(--white);
}

.site-footer a:hover {
    color: var(--gold);
}

.socials {
    gap: 10px;
    margin-top: 8px;
}

.socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    font-weight: 900;
}

.copyright {
    padding: 16px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

@media (max-width: 1120px) {
    .desktop-actions {
        display: none;
    }

    .main-nav a {
        padding: 0 8px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .top-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 9px 0;
    }

    .header-bar {
        min-height: 78px;
    }

    .brand img {
        width: 62px;
    }

    .brand strong {
        font-size: 17px;
    }

    .header-service,
    .header-cta,
    .desktop-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .main-nav a {
        min-height: 46px;
        padding: 0 13px;
        color: var(--navy);
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 6px;
    }

    .main-nav a:last-child {
        border-right: 0;
        border-bottom: 0;
    }

    .main-nav a.active,
    .main-nav a:hover {
        color: var(--navy);
        background: #f1f5fc;
    }

    .main-nav a.active::after {
        display: none;
    }

    .nav-check:checked ~ .site-header .main-nav {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        padding: 0 28px;
    }

    .hero-content {
        padding: 76px 0 38px;
    }

    .notice-inner,
    .section-head,
    .page-hero,
    .contact-grid,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .notice-inner {
        padding: 14px 0;
    }

    .notice-label,
    .notice-all {
        padding: 0;
        border: 0;
    }

    .notice-window {
        width: 100%;
    }

    .notice-item {
        min-width: min(520px, calc(100vw - 32px));
    }

    .news-layout,
    .corporate-overview,
    .civic-grid,
    .pharmacy-grid {
        grid-template-columns: 1fr;
    }

    .corporate-media {
        min-height: 260px;
    }

    .announcement-card {
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: start;
    }

    .announcement-date {
        min-height: 82px;
    }

    .announcement-date strong {
        font-size: 28px;
    }

    .announcement-actions {
        grid-column: 2;
        flex-wrap: wrap;
    }

    .document-card {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: start;
    }

    .document-icon {
        width: 64px;
        height: 64px;
    }

    .document-actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .report-card {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: start;
    }

    .report-icon {
        width: 64px;
        height: 64px;
    }

    .report-actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .legislation-card {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: start;
    }

    .legislation-icon {
        width: 64px;
        height: 64px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-list-large {
        grid-template-columns: 1fr;
    }

    .tariff-card {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: start;
    }

    .tariff-icon {
        width: 64px;
        height: 64px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .side-actions {
        right: 18px;
        top: auto;
        bottom: 86px;
        display: none;
        transform: none;
    }

    .quick-check:checked ~ .side-actions {
        display: grid;
    }

    .quick-button {
        position: fixed;
        right: 18px;
        bottom: 22px;
        z-index: 45;
        width: 56px;
        height: 56px;
        display: grid;
        place-items: center;
        color: var(--white);
        background: var(--blue);
        border-radius: 50%;
        box-shadow: 0 14px 32px rgba(0, 0, 0, .26);
        font-size: 28px;
        font-weight: 900;
        cursor: pointer;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-visual {
        padding: 0 12px;
    }

    .hero p {
        font-size: 16px;
    }

    .page-hero-section {
        padding: 54px 0 22px;
    }

    .service-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .lead-news img,
    .mayor-card img {
        height: 250px;
    }

    .news-list a {
        grid-template-columns: 96px 1fr;
    }

    .news-list img {
        width: 96px;
        height: 82px;
    }

    .notice-inner {
        gap: 10px;
    }

    .notice-item {
        min-width: calc(100vw - 24px);
        padding: 10px 12px;
    }

    .notice-item span {
        font-size: 14px;
    }

    .announcement-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .announcement-date {
        width: 96px;
        min-height: 78px;
    }

    .announcement-actions {
        grid-column: auto;
        width: 100%;
    }

    .announcement-actions .btn {
        flex: 1;
    }

    .document-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .document-actions {
        grid-column: auto;
        width: 100%;
    }

    .document-actions .btn {
        flex: 1;
    }

    .report-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .report-actions {
        grid-column: auto;
        width: 100%;
    }

    .report-actions .btn {
        flex: 1;
    }

    .legislation-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .legislation-icon {
        width: 58px;
        height: 58px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .tariff-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .tariff-icon {
        width: 58px;
        height: 58px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card img {
        min-height: 230px;
    }

    .corporate-card {
        padding: 22px;
    }

    .corporate-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid > a {
        width: 100%;
        text-align: center;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.row > [class*="col-"],
.row > .col {
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
}

.col,
.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-4,
.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-lg-3,
.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.py-4 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.mt-2 {
    margin-top: 8px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 4px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 0 0;
    margin: 0;
    color: var(--muted);
    list-style: none;
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb a {
    color: var(--blue);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 8px;
    color: var(--muted);
}

.form-group {
    margin-bottom: 16px;
}

.form-label,
label {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}

.form-control {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: 0;
}

textarea.form-control {
    min-height: 150px;
}

.alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-success {
    color: #14532d;
    background: #dcfce7;
}

.alert-danger {
    color: #7f1d1d;
    background: #fee2e2;
}

.d-none {
    display: none;
}

.btn-modern,
.btn-primary {
    border: 0;
    cursor: pointer;
}

.collection-wrapper,
.blog-detail-page,
.section-b-space,
.ratio_asos {
    padding: 42px 0;
}

.collection-wrapper h1,
.collection-wrapper h2,
.blog-detail-page h1,
.blog-detail-page h2,
.container h2 {
    color: var(--navy);
    line-height: 1.15;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.table th,
.table td {
    padding: 12px;
    border: 1px solid var(--line);
    text-align: left;
}

.table th {
    color: var(--navy);
    background: var(--soft);
}

@media (max-width: 900px) {
    .col-lg-6,
    .col-lg-4,
    .col-md-4,
    .col-lg-3,
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.site-header .container {
    width: min(1440px, calc(100% - 56px));
}

.site-header .header-bar {
    min-height: 94px;
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) auto auto;
    gap: 22px;
    align-items: center;
}

.site-header .brand {
    min-width: 0;
    gap: 14px;
}

.site-header .brand img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.site-header .brand span {
    min-width: 0;
}

.site-header .brand strong {
    max-width: 220px;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 19px;
}

.site-header .brand small {
    max-width: 220px;
}

.site-header .main-nav {
    justify-content: flex-start;
    gap: 7px;
    overflow: visible;
}

.site-header .main-nav a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 15px;
}

.site-header .desktop-actions {
    gap: 12px;
}

.site-header .header-search {
    width: 205px;
    height: 42px;
}

.site-header .header-cta {
    min-height: 48px;
    padding-left: 20px;
    padding-right: 20px;
}

.site-header .header-right {
    justify-self: end;
    display: none;
}

.site-header .header-service {
    min-width: 158px;
    padding-left: 18px;
    padding-right: 0;
    border-left: 1px solid var(--line);
    border-right: 0;
}

@media (max-width: 1360px) {
    .site-header .header-bar {
        grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) auto;
    }

    .site-header .header-right {
        display: none;
    }

    .site-header .brand strong,
    .site-header .brand small {
        max-width: 190px;
    }
}

@media (max-width: 1180px) {
    .site-header .header-bar {
        grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    }

    .site-header .desktop-actions {
        display: none;
    }

    .site-header .main-nav {
        justify-content: flex-end;
    }
}

@media (max-width: 980px) {
    .site-header .container {
        width: min(100% - 32px, 1440px);
    }

    .site-header .header-bar {
        display: flex;
    }

    .site-header .header-right {
        display: flex;
        margin-left: auto;
    }

    .site-header .header-service {
        display: none;
    }

    .site-header .brand img {
        width: 62px;
        height: 62px;
    }

    .site-header .brand strong,
    .site-header .brand small {
        max-width: 210px;
    }
}

.site-header .header-bar {
    grid-template-columns: minmax(310px, 360px) minmax(620px, 1fr) auto;
    column-gap: 28px;
    overflow: visible;
}

.site-header .brand {
    width: 100%;
}

.site-header .brand strong,
.site-header .brand small {
    max-width: 250px;
}

.site-header .main-nav {
    min-width: 620px;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.site-header .main-nav a {
    flex: 0 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.site-header .desktop-actions {
    justify-self: end;
}

.site-header .header-search {
    display: none;
}

.site-header .header-cta {
    white-space: nowrap;
}

@media (max-width: 1500px) {
    .site-header .container {
        width: min(100% - 40px, 1440px);
    }

    .site-header .header-bar {
        grid-template-columns: minmax(280px, 330px) minmax(560px, 1fr) auto;
        column-gap: 20px;
    }

    .site-header .main-nav {
        min-width: 560px;
        gap: 7px;
    }

    .site-header .main-nav a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }
}

@media (max-width: 1240px) {
    .site-header .header-bar {
        grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    }

    .site-header .main-nav {
        min-width: 0;
        justify-content: flex-end;
    }

    .site-header .desktop-actions {
        display: none;
    }
}

@media (max-width: 980px) {
    .site-header .header-bar {
        display: flex;
    }

    .site-header .header-right {
        display: flex;
        margin-left: auto;
    }

    .site-header .header-service,
    .site-header .desktop-actions {
        display: none;
    }

    .site-header .main-nav {
        min-width: 0;
    }
}
