
.ct-footer {
  color: #d1d1d6;
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
}

.ct-footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP */
.ct-footer-top {
  text-align: center;
  margin-bottom: 70px;
}

.ct-footer-top h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}

.ct-footer-top p {
  color: #b3b3c2;
  margin-bottom: 24px;
}

.ct-newsletter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ct-newsletter input {
  padding: 14px 18px;
  border-radius: 30px;
  min-width: 260px;
  outline: none;
}

.ct-newsletter button {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  color: #12002e;
  font-weight: 600;
  cursor: pointer;
}

/* GRID */
.ct-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 40px;
}

.ct-footer h5 {
  color: #ffffff;
  margin-bottom: 18px;
}

/* BRAND */
.ct-footer-brand img {
  height: 40px;
  margin-bottom: 14px;
}

.ct-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

/* SOCIALS – FIXED */
.ct-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.ct-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #161622;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.ct-socials a i {
  line-height: 1;
}

.ct-socials a:hover {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  color: #12002e;
}



.ct-footer-links a {
  color: #b3b3c2;
  text-decoration: none;
  font-size: 14px;
}

.ct-footer-links a:hover {
  color: #ffffff;
}

/* CONTACT */
.ct-footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* BOTTOM */
.ct-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding-top: 18px;
  font-size: 14px;
  color: #9a9ab0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ct-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ct-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ct-socials {
    justify-content: center;
  }
}
