.footer-sector {
  display: flex;
  gap: 10px;
  background: var(--Global-Gray-Gray-90);
  justify-content: center;
  align-content: center;
}

.footer-container {
  display: flex;
  width: 85%;
  padding: 72px 0;
  gap: 18px;
  align-self: stretch;
  justify-content: space-between;
  color: #FFF;
}

.contact-block{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.label-cont{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.addres-text{
  color: #FFF;
  font-family: "AA Stetica";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; 
}

.addres-head {
  color: #FFF;
  font-family: "AA Stetica";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.label-contact {
  margin-top: 40px;
}

.reg {
  display: flex;
  height: 52px !important;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  color: var(--Global-white, #FFF);
  font-family: "AA Stetica";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.social-links-footer {
  gap: 16px;
  display: flex;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Global-Green-Green-30);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: white;
}

.footer-pages-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-pages-list a {
  color: #FFF;
  font-family: "AA Stetica";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-pages-list a:hover {
  opacity: 0.75;
}

.footer-requisites-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  color: #FFF;
  font-family: "AA Stetica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}

.footer-requisites-link:hover {
  opacity: 0.75;
}

body.requisites-modal-open {
  overflow: hidden;
}

.requisites-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: requisitesFadeIn 0.25s ease;
}

@keyframes requisitesFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.requisites-modal-overlay[hidden] {
  display: none !important;
}

.requisites-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 32px 28px;
  background: var(--Global-Gray-Gray-10, #F5F5F5);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.requisites-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--Global-Black, #000);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.requisites-modal-close:hover {
  background: var(--Global-Gray-Gray-30, #CECBC9);
}

.requisites-modal-title {
  margin: 0 40px 8px 0;
  color: var(--Global-Black, #000);
  font-family: Ledger, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.requisites-modal-company {
  margin: 0 0 24px;
  color: var(--Global-Black, #000);
  font-family: "AA Stetica", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.requisites-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requisites-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 16px;
  align-items: start;
}

.requisites-row dt {
  margin: 0;
  color: var(--Text-Secondary, #565351);
  font-family: "AA Stetica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.requisites-row dd {
  margin: 0;
  color: var(--Global-Black, #000);
  font-family: "AA Stetica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
}

.requisites-row a {
  color: var(--primary-green, #727967);
  text-decoration: none;
}

.requisites-row a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-container {
      flex-direction: column;
  }

  .contact-block {
  align-items: center;
  }

  .addres-text {
  text-align: center;
  }

  .mobile-hidd {
    display: none !important;
  }

  .footer-pages-list {
    align-items: center;
  }

  .footer-requisites-link {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .requisites-modal {
    padding: 28px 20px 24px;
  }

  .requisites-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}