/* ========= FOOTER ============= */

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 1rem;       /* reduced bottom padding */
  position: relative;
  min-height: 300px;          /* keep that tall, premium feel */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-contact {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.footer-contact p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

/* Social icons grid under footer contact */
.social-icons {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 18px 24px;
  max-width: 320px;
  margin: 0 auto 20px;
  padding: 0 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}

.social-icons a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
  color: var(--primary-dark);
}

.social-icons img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Footer bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.7;
  margin-top: 2rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}

/* Responsive footer layout */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
