/* Sticky Mobile Footer - Contact Actions */
.mobile-contact-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none; /* Hidden by default, shown on mobile */
    padding: 12px 0;
}

.mobile-contact-footer-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.mobile-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 120px;
}

.mobile-contact-btn:hover,
.mobile-contact-btn:active {
    opacity: 0.8;
    transform: scale(1.05);
}

.mobile-contact-btn i {
    font-size: 24px;
    margin-bottom: 4px;
    color: #fb5314;
}

.mobile-contact-btn span {
    font-size: 11px;
    font-weight: 600;
    color: #fb5314;
}

/* Show on mobile devices only */
@media (max-width: 768px) {
    .mobile-contact-footer {
        display: block;
    }

    /* Add padding to main footer to prevent overlap with sticky footer */
    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .mobile-contact-btn {
        padding: 6px 10px;
    }

    .mobile-contact-btn i {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .mobile-contact-btn span {
        font-size: 10px;
    }
}

/* Simple slide up animation on page load */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-contact-footer {
    animation: slideUp 0.3s ease-out;
}
