/* =========================================================
   STC 2026
   HOME — FOOTER
   Merged from: style(1)(1).css + style_rapih(1).css
   ========================================================= */

footer {
  background: #0a1230;
  color: #bcd2ee;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #7cb9e8, #2563eb);
  background-size: 200% 100%;
  animation: textShine 5s linear infinite;
}

.footer-container {
  width: min(1200px, 90%);
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 130px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.8;
  transition: 0.3s;
  position: relative;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #7cb9e8;
  padding-left: 6px;
}

.footer-newsletter p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  outline: none;
  transition: 0.3s;
}

.newsletter-form input::placeholder {
  color: #7d93b8;
}

.newsletter-form input:focus {
  border-color: #2563eb;
}

.newsletter-form button {
  padding: 12px 22px;
  background: linear-gradient(90deg, #2563eb, #4f91d8);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  width: min(1200px, 90%);
  margin: auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-3px);
}
