/* Footer Styles */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget .widgettitle {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widgettitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #d4af37;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-bottom-right .footer-list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-right .footer-list li {
    margin-bottom: 0;
}

.social-link {
    display: inline-block;
    margin-right: 15px;
    color: #ccc;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}