/* ===== FOOTER ===== */
.site-footer {
  background: #0f0f0f;
  color: #ccc;
  padding: 80px 20px 30px;
  font-family: 'Exo 2', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  text-align: left;
}

.footer-brand img {
  margin-bottom: 15px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand h3 span {
  color: #ff7a00;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-links a:hover {
  color: #ff7a00;
  text-shadow: 0 0 6px rgba(255, 122, 0, 0.6);
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #aaa;
}

.footer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  background: linear-gradient(135deg, #e86f00, #ff7a00);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #777;
}

.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  color: #aaa;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #ff7a00;
  transform: translateY(-2px);
}