/* Footer */
.footer {
    background-color: #2c3e50;
    color: var(--secondary-color-white);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer h5 {
    color: var(--secondary-color-gold);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0bfc6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color-gold);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--secondary-color-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #b0bfc6;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color-white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}