.footer-custom {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    padding-top: 60px;
    position: relative;
}
.footer-custom h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}
.footer-custom h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #CC5027;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.footer-links a:hover {
    color: #CC5027;
    padding-left: 5px;
}
.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
    color: #CC5027;
}
.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #e0e0e0;
}
.contact-info i {
    margin-right: 15px;
    color: #CC5027;
    font-size: 18px;
    margin-top: 3px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #CC5027;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(204, 80, 39, 0.4);
}
.copyright-area {
    background-color: #000000;
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
    letter-spacing: -0.5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    /* Centering removed as requested */
}
