:root {
  --primary: #0EA5E9;
  --secondary: #F8FAFC;
  --accent: #0F172A;
  --hero-overlay: rgba(15,23,42,0.85);

  /* 🔥 FONT SYSTEM */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--accent);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--accent);
  color: #CBD5E1;
  padding: 80px 0 0;
  padding-left: 10px;

}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ================= BRAND ================= */
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  padding-left: 8px;

}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-left: 8px; /* left spacing */
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}


/* ================= LINKS ================= */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-family: var(--font-heading);
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* ================= CONTACT ================= */
.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #CBD5E1;
  text-decoration: none;
}

/* SOCIALS */
.footer-socials {
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #94A3B8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    justify-content: center;
    padding-left: 0;
  }

  .footer-socials {
    justify-content: center;
  }
}


