/* Footer Styles */
.site-footer {
  padding-top: 4%;
  background-color: #000519 !important;
  color: #fff !important;
  position: absolute;
  width: 100%;
}

.site-footer,
.site-footer * {
  color: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: #fff !important;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 30px; */
}

/* Contact Section */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 80px;
  height: 80px;
}
.phone-icon{
width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-text {
  font-size: 18px;
  margin: 0;
}

.contact-number {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.contact-number a{
color: #fff;
text-decoration: none;
}
.contact-number a:hover{
color: #1484ec;
}

/* Social Media Links */
.social-links {
  display: block;
}

.social-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.social-links-item {
  margin: 0;
  padding: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 40px;
  height: 40px;
}

/* Legal Section */
.footer-legal {
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  padding-top: 30px;
}

.legal-text,
.company-info,
.copyright {
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 20px;
  margin: 0;
  opacity: 0.8;
  color: #fff !important;
  visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 768px) {
.contact-text {
  font-size: 16px;
  margin: 0;
}

.contact-number {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.legal-text,
.company-info,
.copyright {
  font-size: 0.85rem;
}
  .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  .site-footer{
    padding: 0;
  }
  .phone-icon{
    display: none;
  }

  .footer-contact {
      flex-direction: column;
  }

  .social-links {
      margin-top: 20px;
  }
} 
