/**
 * RF Contact Bar Styles
 */
.rf-contactbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    animation: rfContactbarSlideUp 0.3s ease-out;
}

.rf-contactbar.rf-contactbar--hidden {
    display: none;
}

@keyframes rfContactbarSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.rf-contactbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 50px 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.rf-contactbar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    color: #4ade80;
}

.rf-contactbar__text {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.5;
    text-align: center;
}

.rf-contactbar__phone {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.rf-contactbar__phone:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.rf-contactbar__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s ease;
    padding: 0;
}

.rf-contactbar__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Mobile styles */
@media (max-width: 767px) {
    .rf-contactbar__inner {
        padding: 10px 45px 10px 15px;
        gap: 10px;
    }
    
    .rf-contactbar__icon {
        width: 28px;
        height: 28px;
    }
    
    .rf-contactbar__icon svg {
        width: 14px;
        height: 14px;
    }
    
    .rf-contactbar__text {
        font-size: 14px;
        text-align: left;
    }
    
    .rf-contactbar__close {
        width: 24px;
        height: 24px;
        right: 8px;
    }
    
    .rf-contactbar__close svg {
        width: 12px;
        height: 12px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .rf-contactbar__icon {
        display: none;
    }
    
    .rf-contactbar__text {
        font-size: 13px;
    }
}
