/* ============================================================
   Clean It Flip It — Footer Styles
   Used on: ALL pages
   ============================================================ */

.footer {
  background: var(--color-dark);
  color: #CBD5E1;
  padding-top: 64px;
}

/* ---- Main grid --------------------------------------------- */
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Brand column ------------------------------------------ */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 14px;
  text-decoration: none;
}

.footer__brand-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 280px;
  margin-bottom: 24px;
}

/* ---- Social icons ------------------------------------------ */
.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---- Link columns ------------------------------------------ */
.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__links a {
  font-size: 0.9rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer__links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer__links li {
  font-size: 0.9rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- Bottom bar -------------------------------------------- */
.footer__bottom {
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--color-primary);
}

/* ---- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
/* ============================================================
   Clean It Flip It — Footer Styles
   Used on: ALL pages
   ============================================================ */

.footer {
  background: var(--color-dark);
  color: #CBD5E1;
  padding-top: 64px;
}

/* ---- Main grid --------------------------------------------- */
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Brand column ------------------------------------------ */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 14px;
  text-decoration: none;
}

.footer__brand-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 280px;
  margin-bottom: 24px;
}

/* ---- Social icons ------------------------------------------ */
.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---- Link columns ------------------------------------------ */
.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__links a {
  font-size: 0.9rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer__links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer__links li {
  font-size: 0.9rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- Bottom bar -------------------------------------------- */
.footer__bottom {
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--color-primary);
}

/* ---- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
