/* Footer Styles */
footer {
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B00, transparent);
}

footer a {
    position: relative;
    transition: all 0.3s ease;
}

footer a:hover {
    transform: translateY(-2px);
}

/* Social media icons */
footer .flex.gap-4 a {
    transition: all 0.3s ease;
}

footer .flex.gap-4 a:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

/* Footer links hover effect */
footer ul a {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

footer ul a:hover {
    padding-left: 8px;
}

footer ul a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
    color: #FF6B00;
}

footer ul a:hover::before {
    opacity: 1;
    left: -16px;
}

/* Contact info icons */
footer .material-symbols-outlined {
    transition: transform 0.3s ease;
}

footer li:hover .material-symbols-outlined {
    transform: scale(1.2);
}

/* Map container */
footer [data-location] {
    transition: all 0.3s ease;
    cursor: pointer;
}

footer [data-location]:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
}

/* Footer bottom section */
footer .border-t {
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

footer .border-t a {
    position: relative;
}

footer .border-t a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FF6B00;
    transition: width 0.3s ease;
}

footer .border-t a:hover::after {
    width: 100%;
}

