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

/* Pagination — ADU style */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-weight: 500;
}

.nav-links a,
.nav-links span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 1rem;
    color: #004aad;
    background: #f1f3f5;
    border: 1px solid #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
}

.nav-links .current {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    cursor: default;
}

.nav-links .next,
.nav-links .prev {
    font-weight: 600;
    width: auto;
    padding: 0 1rem;
}

.documents-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    @media (max-width: 992px) {
        .documents-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .documents-list {
            grid-template-columns: 1fr;
        }
    }

    .document-block {
        padding: 2rem 1.5rem;
        border: 1.5px solid #d1d5db;
        border-radius: 1rem;
        background-color: #f8f9fa;
        transition: all 0.25s ease;
    }

    .document-block:hover {
        background-color: #ffffff;
        border-color: #0d6efd;
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

    .document-block h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #000;
    }

    .file-item {
        display: flex;
        align-items: center;
        font-size: 1rem;
        line-height: 1.4;
    }

    .file-item i {
        font-size: 1.75rem;
        color: #000;
        opacity: 0.8;
        margin-right: 0.75rem;
    }

    .file-item a {
        font-weight: 500;
        color: #000;
        text-decoration: none;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: anywhere;
        display: inline-block;
        max-width: 100%;
    }

    .file-item a:hover {
        text-decoration: underline;
        color: #000;
    }

    .file-item span {
        font-size: 0.9rem;
        color: #6c757d;
        margin-left: 0.3rem;
    }

    .document-block .d-flex.flex-column.gap-1,
    .document-block .file-item + .file-item,
    .document-block .file-item.mt-2 {
        margin-top: 0.5rem;
    }

    .file-item {
        margin-bottom: 0.35rem;
    }

    /* Контакти / Contacts — ADU style */

.contacts-page h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #000;
}

.contact-card {
  background: #fff;
  border: 1.5px solid #e1e5eb;
  border-radius: 1rem;
  transition: box-shadow 0.25s ease;
}

.contact-card, .map-wrapper {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.08);
}

.contact-item {
  display: flex;
  align-items: start;
}

.contact-icon {
  font-size: 1.75rem;
  color: #004aad;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item h3 {
  font-size: 1.15rem;
  color: #000;
}

.contact-item p {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 0;
}

.contact-item a {
  color: #004aad;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contacts-page .btn-primary {
  background-color: #004aad;
  border: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
  color: #fff;
}
.contacts-page .btn-primary:hover {
  background-color: #003a85;
  color: #fff;
}

.map-wrapper iframe {
  border-radius: 0.75rem;
}

@media (max-width: 768px) {
  .contacts-page h1 {
    font-size: 2rem;
  }
  .contact-icon {
    font-size: 1.5rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .map-wrapper iframe {
    height: 320px;
  }
}
@media (max-width: 992px) {
  .contact-card, .map-wrapper {
    min-height: auto;
  }
}

.appeal-intro h1 {
  font-size: 2.25rem;
  color: #000;
}
.appeal-content {
  font-size: 1.125rem;
  line-height: 1.7;
}
.wpcf7-form {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
}
.wpcf7-form p {
  margin-bottom: 1rem;
}
.wpcf7-form label {
  font-weight: 600;
  color: #0a1f44;
  display: block;
  margin-bottom: 0.5rem;
}
.wpcf7-form-control {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7-form-control:focus {
  border-color: #004aad;
  box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.25);
  outline: none;
}
.wpcf7-submit {
  background-color: #004aad;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: block;
  margin: 1.5rem auto 0 auto;
}
.wpcf7-submit:hover {
  background-color: #003a85;
}


.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.production-section .lead {
  font-size: 1.125rem;
  color: #222;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  color: #333;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
}



.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.roads-section .lead {
  font-size: 1.125rem;
  color: #222;
  line-height: 1.7;
}

.roads-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.roads-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #333;
}

.roads-list i {
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #004aad;
  font-size: 1.2rem;
}

.roads-image-block {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
}

.roads-image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .roads-section {
    text-align: left;
  }
  .section-title {
    font-size: 1.75rem;
  }
}

.services-section {
  background-color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.services-section .lead {
  font-size: 1.125rem;
  color: #222;
  line-height: 1.7;
}

.services-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.services-img {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.services-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .services-image-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .services-image-grid {
    grid-template-columns: 1fr;
  }
  .services-img img {
    height: 200px;
  }
}

.property-section {
  background-color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.property-section .lead {
  font-size: 1.125rem;
  color: #222;
  line-height: 1.7;
}

.property-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  border-width: 2px;
  font-size: 1rem;
  text-transform: none;
}

.btn-outline-primary:hover {
  background-color: #004aad;
  border-color: #004aad;
  color: #fff;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 1.75rem;
  }
  .property-section .row {
    text-align: center;
  }
  .property-image {
    margin-top: 2rem;
  }
}

.production-section {
  background-color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.production-section .lead {
  font-size: 1.125rem;
  color: #222;
  line-height: 1.7;
}

.file-download-block {
  transition: box-shadow 0.3s ease;
}
.file-download-block:hover {
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.08);
}

.file-download-block i {
  flex-shrink: 0;
}

.btn-primary {
  background-color: #004aad;
  border: none;
}
.btn-primary:hover {
  background-color: #003a85;
}

.production-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.production-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .section-title {
    font-size: 1.75rem;
  }
  .production-section .row {
    text-align: center;
  }
  .production-image {
    margin-top: 2rem;
  }
}

.container-fluid {
  --bs-gutter-x: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

section {
  margin-bottom: 3rem;
}

@media (min-width: 1200px) {
  section {
    margin-bottom: 4rem;
  }
}

/* --- ADU corruption section --- */
.adu-section {
  background-color: #f8fafc;
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.adu-title {
  font-family: "e-Ukraine Head", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0b4ea2;
}

.adu-subtitle {
  font-family: "e-Ukraine Head", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #000;
}

.adu-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 2rem;
  transition: transform 0.2s ease;
}

.adu-card:hover {
  transform: translateY(-4px);
}

.adu-card-title {
  font-weight: 600;
  color: #0b4ea2;
  margin-bottom: 0.5rem;
}

.adu-link {
  color: #0b4ea2;
  text-decoration: none;
  font-weight: 500;
}

.adu-link:hover {
  text-decoration: underline;
}