/* Main Footer Styles */
.main-footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 0 0;
  position: relative;
}

.footer-container {
  max-width: 100%;
  margin: 0;
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Tagline Section */
.footer-tagline h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--primary-color);
}

/* Footer Columns */
.footer-column h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: capitalize;
}

.footer-column p {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ff69b4;
}

/* Social Icons in Footer */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #ffffff;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-social a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
}

.footer-social a[aria-label="TikTok"]:hover {
  background: #000000;
  border-color: #69C9D0;
}

.footer-social a[aria-label="YouTube"]:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.footer-social i {
  font-size: 1.3rem;
}

/* Footer Bottom */
.footer-bottom {
  background: #000000;
  margin-top: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: #ff69b4;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #ffffff;
  flex-grow: 1;
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
  opacity: 0;
  pointer-events: none;
}

.back-to-top:hover {
  background: #ff85c1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

.back-to-top i {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 15px 20px;
  }
  
  .footer-tagline h2 {
    font-size: 2.2rem;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 20px;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  .footer-copyright {
    order: -1;
  }
  
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  .footer-social a {
    width: 45px;
    height: 45px;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 0;
  }
  
  .footer-tagline h2 {
    font-size: 1.8rem;
  }
  
  .footer-column h3 {
    font-size: 1.1rem;
  }
  
  .footer-column p {
    font-size: 0.9rem;
  }
  
  .footer-nav {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav a {
    font-size: 0.9rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-social a {
    width: 45px;
    height: 45px;
    gap: 30px;
  }
}
