/* Footer Styles */
.custom-footer {
    background: #5d2417;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-section h5 {
    color: #ffb48a;
    border-bottom: 2px solid #ffb48a;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

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

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

.footer-section ul li i {
    color: #3498db;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffb48a;
    color: black;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #4a6572;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
}