
/* Footer */
.customs-footer {
    background: linear-gradient(135deg, var(--customs-dark) 0%, var(--customs-primary) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.customs-footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.customs-footer-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

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

.customs-footer-links li {
    margin-bottom: 0.8rem;
}

.customs-footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.customs-footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.customs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Contact Button */
.customs-contact-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.customs-contact-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--customs-accent) 0%, #c82333 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(220,53,69,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    animation: customsPulse 2s infinite;
}

.customs-contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(220,53,69,0.6);
}

@media (max-width: 768px) {
    .customs-contact-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
