/* ===============================
   ROOT COLORS & GLOBAL SETTINGS
================================ */
:root {
  --orange: #ff6a00;
  --orange-dark: #e85d00;
  --orange-light: #fff1e6;
  --white: #ffffff;
  --text-dark: #333333;
  --text-muted: #666666;
}

.site-footer {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  padding-top: 50px;
}

/* ===============================
   MAIN FOOTER GRID
================================ */
.footer-main {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* ===============================
   FOOTER COLUMNS (UNIFIED)
================================ */
.footer-column,
.footer-social {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column:hover,
.footer-social:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===============================
   HEADINGS
================================ */
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-heading i {
  margin-right: 8px;
  color: var(--orange-light);
}

/* ===============================
   TEXT CONTENT
================================ */
.footer-content p,
.footer-contact p,
.footer-social p {
  font-size: 14px;
  margin: 10px 0;
  color: var(--orange-light);
  line-height: 1.6;
}

.footer-content i,
.footer-contact i,
.footer-social i {
  margin-right: 8px;
  color: var(--white);
}

/* ===============================
   LINKS
================================ */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a i {
  margin-right: 8px;
  color: var(--orange-light);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-light);
  padding-left: 5px;
}

/* ===============================
   SOCIAL MEDIA COLUMN
================================ */
.social-icons {
  display: flex;
  gap: 18px;
  margin-bottom: 15px;
}

.social-icons a {
  font-size: 26px;
  color: var(--white);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: var(--orange-light);
  transform: scale(1.2);
}

/* Partnership email fix */
.partnership-email {
  font-size: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
}

/* ===============================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  background: var(--white);
  color: var(--text-dark);
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
}

.footer-bottom strong {
  color: var(--orange);
}

.footer-bottom em {
  color: var(--text-muted);
}

/* ===============================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 600px) {
  .footer-heading {
    font-size: 16px;
  }

  .social-icons a {
    font-size: 22px;
  }
}
