/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, #E8A611 0%, #D19205 100%);
    padding: 60px 0 30px;
    color: white;
}

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

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    font-size: 20px;
    min-width: 24px;
    margin-top: 3px;
}

.footer-contact p {
    font-size: 16px;
    margin: 0;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}
