/* Site Footer */
.site-footer {
  background-color: #ffffff;
  padding: 60px 40px 40px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}

/* Newsletter Section */
.newsletter-section {
  max-width: 420px;
  margin-bottom: 60px;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.newsletter-description {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin: 0 0 25px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #000000;
  border-right: none;
  background-color: white;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: #000000;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-button {
  padding: 12px 30px;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.newsletter-button:hover {
  background-color: #000000;
  color: white;
}

/* Footer Links Container */
.footer-links-container {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-left-links,
.footer-right-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left-links a,
.footer-right-links a {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: opacity 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
}

.footer-left-links a:hover,
.footer-right-links a:hover {
  opacity: 0.6;
}

/* Footer Logo */
.footer-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 180px;
  font-weight: 900;
  color: #000000;
  letter-spacing: -5px;
  line-height: 0.85;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  opacity: 1;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-logo {
    font-size: 140px;
  }
}

@media (max-width: 992px) {
  .site-footer {
    padding: 50px 30px 30px;
  }

  .footer-container {
    min-height: 350px;
  }

  .newsletter-section {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .newsletter-title {
    font-size: 28px;
  }

  .footer-logo {
    font-size: 120px;
  }
}

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

  .footer-container {
    min-height: 300px;
  }

  .newsletter-section {
    margin-bottom: 40px;
  }

  .newsletter-title {
    font-size: 24px;
  }

  .newsletter-description {
    font-size: 13px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0;
  }

  .newsletter-input {
    border-right: 2px solid #000000;
    border-bottom: none;
  }

  .newsletter-button {
    width: 100%;
    border-top: none;
  }

  .footer-links-container {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }

  .footer-left-links a,
  .footer-right-links a {
    font-size: 12px;
  }

  .footer-logo {
    font-size: 80px;
  }
}

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

  .footer-container {
    min-height: 250px;
  }

  .newsletter-section {
    margin-bottom: 30px;
  }

  .newsletter-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .newsletter-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .newsletter-input {
    padding: 10px 12px;
    font-size: 12px;
  }

  .newsletter-button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .footer-links-container {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-left-links,
  .footer-right-links {
    gap: 6px;
  }

  .footer-left-links a,
  .footer-right-links a {
    font-size: 11px;
  }

  .footer-logo {
    font-size: 60px;
  }
}
