/* Sticky Footer Mobile - Same as Layout 1 */
/* Hide on Desktop */
.sticky-footer-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sticky-footer-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    
    .sticky-footer-top {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        padding: 10px 15px;
        gap: 15px;
    }
    
    .sticky-icon-btn {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        font-size: 25px;
        transition: all 0.3s ease;
    }
    
    .phone-icon-btn {
        background: linear-gradient(135deg, #0f7e7e 0%, #08ccec 100%);
        border-radius: 25px;
    }
    
    .whatsapp-icon-btn {
        background: linear-gradient(135deg, #13c730 0%, #13c730 100%);
        border-radius: 25px;
    }
    
    .sticky-icon-btn:active {
        transform: scale(0.95);
    }
    
    .sticky-footer-bottom {
        background: #294f70;
        text-align: center;
        padding: 10px 19px;
        border-radius: 25px 25px 0px 0px;
    }
    
    .sticky-footer-bottom span {
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
    }
}

.svg-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    fill: currentColor;
    vertical-align: middle;
}

