/* Footer Styles */
.site-footer {
  background: #1f1f1f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 150px;
  padding: 80px 120px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 59.9px;
  gap: 100px;
}

/* Footer Brand Section */
.footer-brand {
  flex: 1;
  max-width: 260px;
  min-width: 260px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 93px;
  height: 126px;
  flex-shrink: 0;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1;
  letter-spacing: 2px;
}

.footer-subtitle {
  font-size: 11px;
  color: #a0a0a0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.footer-description {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 221px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffcc29;
  border-radius: 4px;
  color: #2c2c2c;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(251, 191, 36, 0.2);
}

.social-link:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Navigation */
.footer-navigation {
  display: flex;
  gap: 0;
  flex: 2;
  justify-content: flex-start;
}

.footer-column {
  flex: 1;
  min-width: 0;
}

.column-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  letter-spacing: 0.5px;
  line-height: 24px;
}

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

.footer-menu li {
  margin-bottom: 0;
}

.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: block;
  line-height: normal;
}

.footer-menu a:hover {
  color: #fbbf24;
}

/* Footer Bottom */
.footer-bottom {
  padding: 0;
  text-align: left;
}

.copyright {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  line-height: normal;
}

/* Decorative Corner */
.footer-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 107px;
  height: 101.5px;
  background: #f8f7ec;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .site-footer {
    padding: 80px 64px 30px;
  }

  .footer-content {
    gap: 60px;
  }

  .footer-navigation {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 88px 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 64px;
    margin-bottom: 64px;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    max-width: 260px;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-section {
    justify-content: center;
    margin-bottom: 16px;
  }

  .footer-description {
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-navigation {
    flex-direction: row;
    gap: 79px;
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
    flex: 0;
  }

  .footer-column {
    text-align: left;
    min-width: 100px;
  }

  .footer-menu a:hover {
    padding-left: 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-corner {
    width: 76px;
    height: 73px;
  }

  .footer-bottom {
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 88px 32px;
  }

  .footer-content {
    gap: 64px;
    margin-bottom: 64px;
    align-items: center;
  }

  .footer-logo-section {
    gap: 0;
  }

  .footer-logo-img {
    width: 93px;
    height: 126px;
  }

  .footer-title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }

  .footer-subtitle {
    font-size: 10px;
  }

  .footer-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 24px;
    height: 24px;
  }

  .footer-navigation {
    flex-direction: row;
    gap: 40px;
    width: 100%;
    justify-content: center;
  }

  .footer-column {
    min-width: auto;
    flex: 0 1 auto;
  }

  .column-title {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 24px;
  }

  .footer-menu {
    gap: 10px;
  }

  .footer-menu a {
    font-size: 14px;
    line-height: normal;
  }

  .footer-menu li {
    margin-bottom: 0;
  }

  .copyright {
    font-size: 14px;
    line-height: normal;
  }

  .footer-bottom {
    padding: 0;
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  .site-footer {
    padding: 88px 20px;
  }

  .footer-navigation {
    gap: 30px;
  }

  .column-title {
    font-size: 14px;
  }

  .footer-menu a {
    font-size: 13px;
  }
}
