.modern-footer {
    background: #202020;
    padding: 80px 0 30px;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.footer-logo-section {
    padding-right: 40px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-description {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #cfa750;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #dba849;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-contact-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-social-icons a {
    width: 40px;
    height: 27px;
    background: #dba849;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social-icons a:hover {
    background: #c99235;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(219, 168, 73, 0.4);
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: #dba849;
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-contact-item a:hover {
    color: #dba849;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright a {
    color: #dba849;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-logo-section {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 60px 0 20px;
    }
    
    .footer-column-title {
        font-size: 1.1rem;
    }
}
