/* Footer Styles */
.footer {
  background-color: #fce7f3;
  color: #374151;
  padding: 4rem 1.5rem 1.5rem;
  border-top: 1px solid #d1d5db;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #d1d5db;
}

.footer-brand img {
  width: 10rem;
}

.footer-brand p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.625;
  margin-top: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-0.5rem);
}

.fb-link {
  background-color: #1877f2;
  box-shadow: 0px 6px 18px rgba(24, 119, 242, 0.6);
}

.fb-link:hover {
  box-shadow: 0px 10px 30px rgba(24, 119, 242, 0.9);
}

.twitter-link {
  background-color: black;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.6);
}

.twitter-link:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.9);
}

.ig-link {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  box-shadow: 0px 6px 18px rgba(221, 42, 123, 0.5);
}

.ig-link:hover {
  box-shadow: 0px 10px 30px rgba(221, 42, 123, 0.8);
}

.yt-link {
  background-color: #ff0000;
  box-shadow: 0px 6px 18px rgba(255, 0, 0, 0.6);
}

.yt-link:hover {
  box-shadow: 0px 10px 30px rgba(255, 0, 0, 0.9);
}

.footer-links h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #dc2626;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: #dc2626;
}

.footer-contact h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #dc2626;
  margin-bottom: 1.25rem;
}

.footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #374151;
  line-height: 1.625;
}

.footer-contact i {
  color: #dc2626;
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-bottom .payment-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  color: #6b7280;
  font-size: 1.25rem;
}

.footer-bottom .payment-icons i:hover {
  color: #dc2626;
  cursor: pointer;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 3rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    grid-template-columns: 2fr 1fr;
    text-align: left;
  }
  .footer-bottom .payment-icons {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 5rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-bottom {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Fixed Social Sidebar (Right Side) */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.social-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: auto;
  min-width: 50px;
  border-radius: 8px 0 0 8px;
  margin-top: 2px;
  position: relative;
  overflow: hidden;
}

.social-sidebar-item:hover {
  min-width: 140px;
  padding-right: 20px;
}

.social-sidebar-item i,
.social-sidebar-item svg {
  min-width: 20px;
  width: 20px;
  text-align: center;
}

.social-sidebar-item span {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  margin-left: 12px;
}

.social-sidebar-item:hover span {
  opacity: 1;
  transform: translateX(0);
}

.social-sidebar-item.facebook {
  background-color: #1877f2;
}

.social-sidebar-item.twitter {
  background-color: #000000;
}

.social-sidebar-item.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-sidebar-item.youtube {
  background-color: #ff0000;
}

/* Hover effects for each platform */
.social-sidebar-item.facebook:hover {
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.6);
}

.social-sidebar-item.twitter:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.social-sidebar-item.instagram:hover {
  box-shadow: 0 4px 20px rgba(221, 42, 123, 0.6);
}

.social-sidebar-item.youtube:hover {
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6);
}
