.main-footer {
  background:
    radial-gradient(circle at 14% 20%, rgba(181, 122, 67, 0.22), transparent 36%),
    radial-gradient(circle at 84% 88%, rgba(19, 42, 66, 0.12), transparent 40%),
    linear-gradient(155deg, #faf3e9 0%, #f2e6d8 44%, #ead9c6 100%);
  color: #2b3a4e;
  padding: 46px 0 22px;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #d7bea0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  padding: 0 16px;
}

.footer-container::before {
  content: "GUMUSALL";
  position: absolute;
  left: 16px;
  top: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #2f4867;
  opacity: 0.95;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #31465f;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.28s ease;
  font-weight: 700;
}

.footer-links a:hover {
  color: #9f6532;
}

.simple-social-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.s-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a3c5f, #2c547f);
  color: #f7efe3;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  border: 1px solid #e0c9ad;
  box-shadow: 0 8px 15px rgba(25, 36, 50, 0.16);
}

.s-icon:hover {
  transform: translateY(-3px);
  filter: saturate(1.12);
  box-shadow: 0 12px 20px rgba(22, 33, 47, 0.23);
}

.fb { background: linear-gradient(135deg, #2b4f86, #163765); }
.yt { background: linear-gradient(135deg, #a7493d, #7f2d23); }
.ig { background: linear-gradient(135deg, #8f5a79, #6e3c5f); }
.ln { background: linear-gradient(135deg, #29597a, #174766); }
.sp { background: linear-gradient(135deg, #3e7a5b, #2d5e46); }
.tk { background: linear-gradient(135deg, #3f4c60, #2b3445); }

.footer-bottom {
  margin-top: 2px;
  border-top: 1px solid #d8c6b0;
  width: 100%;
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p {
  color: #4f6179;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 760px) {
  .footer-container::before {
    position: static;
    margin-bottom: -4px;
  }
}