/* Footer Styles */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.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: flex;
    gap: 20px;
}

.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;
}

/* Responsive Design */
@media (max-width: 768px) {
  .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;
    }
} 
