.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 350px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-contact i {
    font-size: 18px;
    color: var(--white);
    margin-right: 10px;
}

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    margin-right: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--white);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }

    .footer-description {
        margin: 0 auto;
    }

    .footer-contact li {
        justify-content: center;
    }

    .parallax-content h1 {
        font-size: 79px;
    }

    .parallax-content p {
        font-size: 35px;
    }

    .parallax-page-content {
        padding-left: 50px;
        padding-right: 50px;
    }

    .parallax-page-content h2 {
        font-size: 35px;
    }

    .parallax-page-content p {
        font-size: 23px;
    }
}