/* Footer Styles */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 40px 0 30px;
    margin-top: 60px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info i {
    margin-left: 8px;
    color: var(--primary-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--heading-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--heading-color);
    transform: translateY(-3px);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

.phone-link i, .email-link i {
    margin-right: 8px;
}

.phone-link span, .email-link span {
    margin: 0 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 20px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }
}