:root {
  --blue-900: #0b3d66;
  --blue-800: #0f4c81;
  --blue-700: #1565a8;
  --blue-600: #1b7ac4;
  --blue-500: #2b8fd9;
  --blue-100: #e8f3fb;
  --ink: #1a2430;
  --muted: #5b6b7c;
  --line: #d7e3ee;
  --bg: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(11, 61, 102, 0.08);
  --radius: 14px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(43, 143, 217, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 40%, #eef4f9 100%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--blue-900);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-900);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.top-bar {
  background: var(--blue-900);
  color: #fff;
  font-size: 0.9rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 48px;
}

.top-utility-infocons {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.top-infocons-logo {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-contacts {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  opacity: 0.95;
}

.top-contacts-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.22);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand-bar-inner {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--blue-900);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  border-top: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 40;
}

.site-nav > .container > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0.2rem 0;
  overflow: visible;
}

.site-nav .nav-item {
  position: relative;
  list-style: none;
}

.site-nav .nav-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav .nav-link,
.site-nav .nav-label {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.45rem 0.65rem 0.55rem;
  color: var(--blue-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav .nav-link:hover,
.site-nav .nav-label:hover,
.site-nav .has-children.is-open > .nav-row > .nav-label,
.site-nav .is-active > .nav-row > .nav-link,
.site-nav .is-active > .nav-row > .nav-label,
.site-nav .is-active > .nav-link {
  background: var(--blue-100);
  color: var(--blue-900);
}

.site-nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 0.15rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--blue-800);
  cursor: pointer;
  flex: 0 0 auto;
}

.site-nav .submenu-toggle:hover,
.site-nav .has-children.is-open > .nav-row > .submenu-toggle {
  background: var(--blue-100);
  color: var(--blue-900);
}

.site-nav .caret {
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.15s ease;
}

.site-nav .has-children.is-open > .nav-row > .submenu-toggle .caret {
  transform: rotate(180deg);
}

/* Panels closed by default — JS toggles .is-open */
.site-nav li > ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 80;
}

.site-nav li.is-open > ul {
  display: block;
}

/* Top-level dropdown: one scrollable column */
.site-nav > .container > ul > li > ul {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  width: min(400px, 94vw);
  max-width: min(400px, 94vw);
  max-height: min(70vh, 620px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

/* Nested levels: always accordion inside the same panel */
.site-nav .nav-level-1 > li > ul,
.site-nav .nav-level-2 > li > ul,
.site-nav .nav-level-3 > li > ul {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  width: auto;
  min-width: 0;
  max-width: none;
  max-height: none;
  overflow: visible;
  margin: 0.15rem 0 0.25rem 0.15rem;
  padding: 0.15rem 0.2rem 0.2rem 0.4rem;
  border: 0;
  border-left: 3px solid var(--blue-400);
  border-radius: 8px;
  box-shadow: none;
  background: #f3f8fc;
}

.site-nav .nav-level-1 .nav-link,
.site-nav .nav-level-1 .nav-label,
.site-nav .nav-level-2 .nav-link,
.site-nav .nav-level-2 .nav-label,
.site-nav .nav-level-3 .nav-link,
.site-nav .nav-level-3 .nav-label {
  text-transform: none;
  font-size: 0.86rem;
  letter-spacing: 0;
  white-space: normal;
  line-height: 1.3;
  width: 100%;
  padding: 0.45rem 0.4rem;
}

.site-nav .nav-level-1 .nav-row,
.site-nav .nav-level-2 .nav-row,
.site-nav .nav-level-3 .nav-row {
  width: 100%;
}

.site-nav .nav-level-1 .submenu-toggle,
.site-nav .nav-level-2 .submenu-toggle,
.site-nav .nav-level-3 .submenu-toggle {
  margin-left: auto;
}

.site-nav .nav-level-1 .has-children.is-open > .nav-row,
.site-nav .nav-level-2 .has-children.is-open > .nav-row,
.site-nav .nav-level-3 .has-children.is-open > .nav-row {
  background: rgba(11, 61, 102, 0.06);
  border-radius: 8px;
}

.site-main {
  padding-bottom: 3rem;
}

/* Page hero under menu — container width like homepage hero */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100% - 2rem, var(--container));
  margin: 1.25rem auto 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--blue-900), #1a4f7a);
  color: #fff;
  padding: 2.2rem 1.5rem 1.8rem;
}

.has-page-hero-photo .page-hero {
  background:
    linear-gradient(120deg, rgba(11, 61, 102, 0.86) 8%, rgba(11, 61, 102, 0.58) 48%, rgba(8, 40, 68, 0.82) 100%),
    var(--page-hero-image) center / cover no-repeat;
  min-height: 168px;
  display: flex;
  align-items: flex-end;
}

.has-page-hero-photo .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 40, 68, 0.35));
  pointer-events: none;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  color: #fff;
}

.page-hero p {
  margin: 0.55rem 0 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.page-wrap {
  padding-top: 1.5rem;
}

.has-page-hero-photo .page-wrap {
  padding-top: 1.15rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.content-article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.content-article h1 {
  margin-top: 0;
  font-family: var(--serif);
  color: var(--blue-900);
  line-height: 1.2;
}

.content-body {
  overflow-wrap: anywhere;
}

.content-body .doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.content-body .doc-list li {
  margin: 0;
}

.content-body .doc-list a {
  display: block;
  padding: 0.95rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(11, 61, 102, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.content-body .doc-list a:hover {
  border-color: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.content-body .doc-list .doc-body {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
}

.content-body .doc-list .doc-title {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
}

.content-body .doc-list .doc-date,
.content-body .doc-list time {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  background: var(--blue-700);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.3;
}

.anunturi-meta {
  margin: -0.35rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pagination {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.content-body .doc-list + .pagination {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.pagination-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pagination-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.pagination-item a,
.pagination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-800);
  text-decoration: none;
  font-weight: 600;
}

.pagination-item a:hover {
  border-color: var(--blue-500);
  color: var(--blue-900);
}

.pagination-item.is-current span {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
}

.pagination-item.is-disabled span {
  opacity: 0.45;
}

.pagination-item.is-ellipsis span {
  border: 0;
  background: transparent;
  min-width: 1.5rem;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.content-body th,
.content-body td,
.content-body table.sppb-addon-table-main th,
.content-body table.sppb-addon-table-main td,
.content-body table.table th,
.content-body table.table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.content-body table thead th,
.content-body table thead td {
  background: var(--blue-900);
  color: #fff;
}

.content-body .content-map {
  margin: 1.25rem 0 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8eef4;
}

.content-body .content-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.content-body .content-map-link {
  margin: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.92);
}

.content-body .content-figure {
  margin: 1rem 0;
}

.content-body .content-figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.content-body .content-callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  background: #f3f8fc;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 10px 10px 0;
}

.content-body .content-callout h3 {
  margin: 0 0 0.5rem;
  color: var(--blue-800);
  font-size: 1.05rem;
}

/* Homepage */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 140px;
  padding: 1.25rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--blue-600);
  transition: transform 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.quick-action:nth-child(even) {
  background: var(--blue-700);
}

.quick-action:hover {
  background: var(--blue-900);
  color: #fff;
  filter: brightness(1.05);
}

.quick-action svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 1.5rem;
}

.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #dfeaf4;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--blue-900);
  margin: 0 0 1rem;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.tagline {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48rem;
  margin: 0.5rem auto 2rem;
  font-style: italic;
}

.home-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 2rem;
}

.home-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #dfeaf4;
  aspect-ratio: 4 / 3;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.partner-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 0 0 2rem;
  padding: 1.25rem 0;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.partner-card h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.partner-card a {
  display: inline-block;
}

.partner-112 img {
  width: min(220px, 70%);
  height: auto;
}

.nav-link-infocons {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}

.nav-infocons-logo {
  width: auto;
  height: 28px;
  object-fit: contain;
  border-radius: 3px;
  background: #fff;
}

.infocons-page {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.infocons-brand {
  display: inline-block;
  line-height: 0;
}

.infocons-brand img {
  width: min(240px, 70vw);
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.infocons-page .btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  background: var(--blue-700);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.infocons-page .btn:hover {
  background: var(--blue-800);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.info-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-800);
}

.info-card p,
.info-card a {
  margin: 0.25rem 0;
  color: var(--muted);
  text-decoration: none;
}

.info-card-logo .info-logo {
  width: min(220px, 100%);
  height: auto;
  margin: 0.35rem 0 0.85rem;
  object-fit: contain;
}

.site-footer {
  margin-top: 2rem;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0 2rem;
}

.footer-grid h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0.35rem 0;
}

.emergency-badge {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.2rem 0 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: space-between;
  align-items: baseline;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  margin-top: 0.35rem !important;
  font-size: 0.88rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel,
  .info-strip,
  .partner-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    gap: 1.25rem;
    padding: 1.5rem 0 1rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 220px;
  }

  .home-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .top-contacts {
    display: none;
  }

  .top-contacts-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0.35rem;
    min-width: 2.75rem;
    min-height: 2.5rem;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    background: #e53935;
    color: #fff !important;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .brand-bar-inner {
    padding: 0.65rem 0;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.82rem;
  }

  .site-nav {
    display: none;
    border-bottom: 1px solid var(--line);
    max-height: min(78vh, 640px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-nav > .container > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0.35rem 0 1rem;
    gap: 0.15rem;
  }

  .site-nav .nav-link,
  .site-nav .nav-label {
    white-space: normal;
    font-size: 0.95rem;
    width: 100%;
    padding: 0.8rem 0.55rem;
    min-height: 44px;
  }

  .site-nav .nav-row {
    width: 100%;
  }

  .site-nav .submenu-toggle {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.1rem;
  }

  .site-nav > .container > ul > li > ul,
  .site-nav .nav-level-1 > li > ul,
  .site-nav .nav-level-2 > li > ul,
  .site-nav .nav-level-3 > li > ul {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    min-width: 0;
    max-width: none;
    max-height: none;
    width: auto;
    box-shadow: none;
    border: 0;
    border-radius: 10px;
    border-left: 3px solid var(--blue-500);
    background: rgba(232, 243, 251, 0.85);
    margin: 0.15rem 0 0.35rem 0.35rem;
    padding: 0.25rem 0.25rem 0.25rem 0.35rem;
    overflow: visible;
  }

  .page-hero {
    width: min(100% - 1.25rem, var(--container));
    margin-top: 1rem;
    padding: 1.5rem 1rem 1.25rem;
    border-radius: 14px;
  }

  .has-page-hero-photo .page-hero {
    min-height: 132px;
  }

  .page-hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
  }

  .page-wrap {
    padding-top: 1rem;
  }

  .content-article {
    padding: 1rem 0.9rem 1.25rem;
    border-radius: 12px;
  }

  .content-body .doc-list a {
    padding: 0.85rem 0.9rem;
  }

  .content-body .doc-list .doc-title {
    font-size: 0.95rem;
  }

  .content-body .doc-list .doc-body {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.45rem 0.75rem;
  }

  .content-body .doc-list .doc-date,
  .content-body .doc-list time {
    margin-left: auto;
  }

  .content-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content-body .content-map iframe {
    height: 240px;
  }

  .pagination-item a,
  .pagination-item span {
    min-width: 2.5rem;
    min-height: 2.5rem;
  }

  .site-footer {
    margin-top: 1.25rem;
  }

  .footer-grid {
    gap: 1.25rem;
    padding: 1.75rem 0 1.5rem;
  }

  .quick-action {
    min-height: 120px;
    padding: 1rem 0.75rem;
    font-size: 0.88rem;
    text-align: center;
  }

  .quick-action svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .page-hero {
    width: min(100% - 1rem, var(--container));
  }

  .quick-actions {
    grid-template-columns: 1fr 1fr;
  }

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

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    display: none;
  }

  .top-infocons-logo {
    height: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 180px;
    border-radius: 12px;
  }

  .tagline {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }

  .content-article h1 {
    font-size: 1.35rem;
  }

  .breadcrumbs {
    font-size: 0.85rem;
  }

  .anunturi-meta {
    font-size: 0.88rem;
  }

  .content-body img {
    max-width: 100%;
  }

  .partner-112 img {
    width: min(180px, 55%);
  }
}

.hero-kicker {
  margin: 0 0 0.55rem;
  color: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.answer-first {
  font-size: 1.05rem;
  color: var(--ink);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  background: var(--blue-700);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-inline:hover {
  background: var(--blue-900);
}

.btn-inline-ghost {
  background: #fff;
  color: var(--blue-800) !important;
  border: 1px solid var(--line);
}

.btn-inline-ghost:hover {
  border-color: var(--blue-500);
  background: var(--blue-100);
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
}

.service-highlights article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}

.service-highlights h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--blue-900);
}

.service-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-block {
  margin: 0 0 2.25rem;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-block h2 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  color: var(--blue-900);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.faq-lead {
  margin: 0 0 1rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.15rem 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-900);
  padding: 0.75rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue-700);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.year-index {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.year-index .year-link {
  display: block;
  padding: 0.95rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--blue-900);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(11, 61, 102, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.year-index .year-link:hover {
  border-color: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: var(--blue-900);
}

.year-accordion {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.year-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(11, 61, 102, 0.04);
  overflow: hidden;
}

.year-panel[open] {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
}

.year-panel-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--blue-900);
  user-select: none;
}

.year-panel-toggle::-webkit-details-marker {
  display: none;
}

.year-panel-toggle::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--blue-700);
  border-bottom: 2px solid var(--blue-700);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.year-panel[open] > .year-panel-toggle::after {
  transform: rotate(225deg);
  margin-top: 0.25rem;
}

.year-panel-body {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
}

.year-panel-body .doc-list {
  margin-top: 0.85rem;
}

@media (max-width: 980px) {
  .service-highlights {
    grid-template-columns: 1fr;
  }
}

/* Prefer reduced motion on small screens / a11y */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contact form */
.contact-page {
  display: grid;
  gap: 2rem;
}

.contact-details h2,
.contact-form-section h2 {
  margin: 0 0 0.75rem;
  color: var(--blue-900);
  font-size: 1.35rem;
}

.contact-phones {
  margin: 0.75rem 0 1rem;
  padding-left: 1.1rem;
  line-height: 1.7;
}

.contact-quick-links {
  margin: 0;
}

.contact-form {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(11, 61, 102, 0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.contact-field {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-weight: 600;
  color: var(--blue-900);
  font-size: 0.92rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--text, #1a2b3c);
  background: #fff;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
  border-color: var(--blue-500);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-actions {
  margin: 1rem 0 0.5rem;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border: 0;
  border-radius: 8px;
  background: var(--blue-700, #0b5a8c);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--blue-900);
}

.contact-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-alert-ok {
  background: #e8f6ee;
  border: 1px solid #9dceb0;
  color: #1d5c38;
}

.contact-alert-err {
  background: #fdeeee;
  border: 1px solid #e2a3a3;
  color: #8a1f1f;
}

.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
