.site-footer {
  padding: 18px 0 26px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.92fr 1fr 0.72fr;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(13, 59, 79, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(240, 109, 79, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(13, 59, 79, 0.96), rgba(16, 56, 75, 0.96));
  color: #eef6f8;
  box-shadow: var(--shadow);
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-tools {
  display: grid;
  gap: 10px;
}

.footer-tools {
  justify-items: start;
  align-content: start;
}

.footer-brand h3,
.footer-links h3,
.footer-contact h3,
.footer-tools h3 {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-contact p,
.footer-tools p {
  color: rgba(238, 246, 248, 0.74);
}

.footer-link-list {
  display: grid;
  gap: 8px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.footer-link-list a:hover {
  color: #fff;
}

.footer-contact-card {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.footer-utility {
  width: min(100%, 260px);
  position: relative;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.language-select {
  margin-top: 10px;
  width: min(100%, 228px);
  position: relative;
}

.language-list-toggle {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(9, 25, 34, 0.68);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-caret {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.language-select.is-open .lang-caret {
  transform: rotate(180deg);
}

.language-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(9, 25, 34, 0.96);
  box-shadow: 0 20px 34px rgba(2, 8, 12, 0.32);
}

.language-select.is-open .language-list {
  display: block;
}

.language-list-option {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(238, 246, 248, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.language-list-option:first-child {
  border-top: 0;
}

.language-list-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.language-list-option.is-active {
  background: rgba(240, 109, 79, 0.22);
  color: #fff;
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 0 8px;
  color: rgba(20, 49, 63, 0.74);
  font-size: 0.86rem;
}

#google_translate_element2 {
  display: none;
}

@media (max-width: 1080px) {
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-utility {
    width: 100%;
  }

  .language-select {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .footer-shell {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
