/* ===============================
   FOOTER
================================ */
.footer {
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #cbd5f5;
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}

/* ===============================
   FOOTER GRID
================================ */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* ===============================
   FOOTER COLUMN
================================ */
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

/* ===============================
   FOOTER LOGO
================================ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.footer-logo h3 span {
  color: #d4af37;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 20px;
}

/* ===============================
   FOOTER TEXT
================================ */
.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5f5;
}

/* ===============================
   SOCIAL LINKS
================================ */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #020617;
  transform: translateY(-4px);
}

/* ===============================
   FOOTER LINKS
================================ */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5f5;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-links a i {
  color: #d4af37;
  font-size: 12px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

/* ===============================
   CONTACT INFO
================================ */
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-info i {
  color: #d4af37;
  margin-top: 4px;
}

/* ===============================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-bottom .seo-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 70px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}
