


.gold {
  color: #FFC200;
}

.footer {
  background: #000;
  padding: 60px 40px 30px 40px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.footer-box h2.logo {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.footer-box h3 {
  color: #FFC200;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #FFC200;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #FFC200;
  transform: translateX(5px);
}

.footer-box form {
  display: flex;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #333;
}

.footer-box form input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #1a1a1a;
  color: #fff;
}

.footer-box form button {
  padding: 10px 15px;
  background: #FFC200;
  color: #000;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box form button:hover {
  background: #e0b100;
}

.socials {
  margin-top: 15px;
}

.socials a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.socials a:hover {
  color: #FFC200;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.shine-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff, #FFC200, #fff);
  margin-top: 15px;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
