/* Footer Section Styles */
.footer-section {
  background-color: #1c160d;
  color: #f4f4f4;
  padding: 64px 0 28px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 420px;
  max-width: 90%;
  margin-bottom: 24px;
}

.footer-links {
  margin-top: 10px;
  margin-bottom: 32px;
}

.links-title {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 34px;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.footer-links nav {
  display: flex;
  gap: 72px;
}

.footer-links a {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 18px;
  color: #cacaca;
  text-decoration: none;
}

.footer-note {
  max-width: 960px;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #cfcfcf;
  margin-bottom: 34px;
}

/* Socials */
.footer-social {
  display: flex;
  gap: 18px;
  margin: 6px 0 28px;
}

.footer-social .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social .social-btn:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-social .icon-letter {
  font-family: "Poppins-Bold", sans-serif;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

/* Language Selector */
.footer-language {
  margin: 6px 0 28px;
  text-align: center;
}

.language-title {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 18px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
  color: #ffffff;
}

.language-selector {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.language-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cacaca;
  text-decoration: none;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
}

.language-link:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

.language-link.active {
  background-color: #E7A711;
  border-color: #E7A711;
  color: #1c160d;
  font-weight: 600;
}

.language-link .flag {
  font-size: 16px;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 16px;
}

.footer-bottom a {
  color: #429aff;
  text-decoration: underline;
}

.footer-address {
  margin-top: 16px;
}

.company-address {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
  margin: 0;
}

.company-address strong {
  color: #ffffff;
  font-family: "Poppins-SemiBold", sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 20px;
  }
  .footer-links nav {
    flex-direction: column;
    gap: 15px;
  }
}
