* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* footer {
    background-color: #000;
    padding: 4.5rem 5rem;
    max-width: 100%;
    margin: 0 auto;
    max-height: auto;
    border-top: 2px solid white;
    transform: translateY(120px);
    transition: transform 0.1s linear;
} */

footer.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
height: auto;
  background-color: #000;
  padding: 4.5rem 5rem;
  color: white;
  /* transform: translateY(500px); initial hidden */
  transition: transform 0.1s linear;
  z-index: -1;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}

.footer-logo {
    font-size: clamp(40px, 10vw, 110px);
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 60px;
    line-height: 0.9;
}

.footer-services-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-services-title {
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px 60px;
}

.footer-service-column ul {
    list-style: none;
}

.footer-service-column li {
    color: #fff;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 300;
}

.footer-service-column li::before {
    content: "•";
    margin-right: 10px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding: 10px 0;
}

.footer-column h3 {
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.6;
}

.footer-contact-info p {
    color: #fff;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact-cta {
    color: #fff;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    font-weight: 400;
}

.contact-btn:hover {
    opacity: 0.6;
}

.contact-btn i {
    margin-left: 10px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.copyright {
    flex: 1;
    min-width: 300px;
}

.copyright p {
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 300;
    color: #999;
}

.acknowledgement {
    font-size: 11px;
    line-height: 1.8;
    font-weight: 300;
    color: #999;
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.6;
}

.scroll-top {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-top:hover {
    color: #fff;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 5% 30px;
    }

    .footer-logo {
        margin-bottom: 40px;
    }

    .footer-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
    }

    .social-links {
        order: -1;
    }
}