/**
 * Footer Styling - Hindustan Power EV
 */

.hp-site-footer {
  background-color: #0c0e1a;
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.hp-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hp-footer-brand-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  text-align: left;
}

.hp-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  text-align: left !important;
  width: 100%;
}

.hp-footer-info {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.65;
  text-align: left;
}

.hp-footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 0.65rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hp-footer-links a {
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
  display: block !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hp-footer-links a:hover {
  color: #11b2a4 !important;
}

.hp-footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748b;
}

.hp-scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #11b2a4;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.hp-scroll-top:hover {
  background: #0ea194;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .hp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
