/* =========================
   Footer
   ========================= */

.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 77, 0.22),
    transparent 65%
  );
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 62, 43, 0.5), transparent 68%);
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 85px 0 65px;
  border-top: 1px solid rgba(201, 162, 77, 0.22);
}

.footer-logo {
  display: inline-block;
  color: var(--color-gold);
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.footer-logo:hover {
  color: var(--color-gold);
}

.footer-text {
  color: #d8d0c4;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 24px;
}

.footer-title {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: #d8d0c4;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 77, 0.32);
  color: var(--color-gold);
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-4px);
}

.footer-form {
  display: flex;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: 999px;
  overflow: hidden;
  padding: 5px;
}

.footer-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  padding: 12px 14px;
  font-size: 14px;
}

.footer-form input::placeholder {
  color: #b8ad9f;
}

.footer-form button {
  border: none;
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  background-color: var(--color-white);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: #b8ad9f;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #b8ad9f;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* =========================
   Footer Responsive
   ========================= */

@media (max-width: 991px) {
  .footer-main {
    padding: 75px 0 55px;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 65px 0 45px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    font-size: 26px;
  }

  .footer-form {
    flex-direction: column;
    border-radius: 18px;
    padding: 8px;
  }

  .footer-form input {
    text-align: center;
  }

  .footer-form button {
    width: 100%;
    border-radius: 14px;
  }
}
