
/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 14px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Footer Social Icons */
.footer .social-links {
    margin-top: 25px;
    gap: 15px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    background: var(--primary-dark);
    color: var(--gold-light);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.footer .social-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(100%);
}

.footer .social-links a i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.footer .social-links a:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.footer .social-links a:hover:before {
    opacity: 1;
    transform: translateY(0);
}

.footer .social-links a:hover i {
    color: var(--primary-dark);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .footer h4 {
        margin-top: 30px;
    }
}