.main-footer {
  background-color: #0a0e31;
  color: #ffffff;
  padding: 60px 20px 24px;
  font-family: 'Josefin Sans', sans-serif;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Brand Section */
.footer-logo a {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-decoration: none;
  flex-wrap: wrap;
}

.footer-logo-img {
  width: 40px;
  height: auto;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.footer-logo-text {
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: #cccccc;
}

.footer-description {
  font-family: Inter, sans-serif;
  max-width: 400px;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
}

.instagram {
  width: 40px;
  height: 34px;
}
.facebook {
  width: 32px;
  height: 35px;
}
.whatsapp {
  width: 38px;
  height: 33.79px;
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-list li a {
  font-family: Inter, sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s;
  opacity: 0.8;
}

.footer-list li a:hover {
  color: #ff6a00;
}

/* Copyright Section - New Addition */
.footer-copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-copyright-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-copyright p {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: #b0b0b0;
  letter-spacing: 0.3px;
  margin: 0;
}

/* Tablet Layout */
@media (min-width: 768px) {
  .footer-links-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 80px;
  }
  
  .footer-copyright {
    margin-top: 56px;
  }
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-links-grid {
    flex-grow: 1;
    justify-content: space-around;
    gap: 40px;
  }
  
  .footer-brand-section {
    flex: 0 0 35%;
  }
  
  .footer-copyright-container {
    padding: 0;
  }
}

/* Extra small devices - ensures nothing floats incorrectly */
@media (max-width: 480px) {
  .main-footer {
    padding: 48px 16px 24px;
  }
  
  .footer-heading {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .footer-links-grid {
    width: 100%;
    gap: 32px;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
  }
}